Skip to content
This repository was archived by the owner on Jun 2, 2025. It is now read-only.

Commit 071a8ef

Browse files
committed
Added KiwiDocs
1 parent 3ba0450 commit 071a8ef

42 files changed

Lines changed: 3066 additions & 1 deletion

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/docs/.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
indent_size = 4
8+
indent_style = space
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

docs/docs/.gitattributes

Lines changed: 192 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,192 @@
1+
## GITATTRIBUTES FOR WEB PROJECTS
2+
#
3+
# These settings are for any web project.
4+
#
5+
# Details per file setting:
6+
# text These files should be normalized (i.e. convert CRLF to LF).
7+
# binary These files are binary and should be left untouched.
8+
#
9+
# Note that binary is a macro for -text -diff.
10+
######################################################################
11+
12+
## AUTO-DETECT
13+
## Handle line endings automatically for files detected as
14+
## text and leave all files detected as binary untouched.
15+
## This will handle all files NOT defined below.
16+
* text=auto
17+
18+
## SOURCE CODE
19+
*.bat text eol=crlf
20+
*.coffee text
21+
*.css text
22+
*.htm text
23+
*.html text
24+
*.inc text
25+
*.ini text
26+
*.js text
27+
*.json text
28+
*.jsx text
29+
*.less text
30+
*.od text
31+
*.onlydata text
32+
*.php text
33+
*.pl text
34+
*.py text
35+
*.rb text
36+
*.sass text
37+
*.scm text
38+
*.scss text
39+
*.sh text eol=lf
40+
*.sql text
41+
*.styl text
42+
*.tag text
43+
*.ts text
44+
*.tsx text
45+
*.xml text
46+
*.xhtml text
47+
48+
## DOCKER
49+
*.dockerignore text
50+
Dockerfile text
51+
52+
## DOCUMENTATION
53+
*.markdown text
54+
*.md text
55+
*.mdwn text
56+
*.mdown text
57+
*.mkd text
58+
*.mkdn text
59+
*.mdtxt text
60+
*.mdtext text
61+
*.txt text
62+
AUTHORS text
63+
CHANGELOG text
64+
CHANGES text
65+
CONTRIBUTING text
66+
COPYING text
67+
copyright text
68+
*COPYRIGHT* text
69+
INSTALL text
70+
license text
71+
LICENSE text
72+
NEWS text
73+
readme text
74+
*README* text
75+
TODO text
76+
77+
## TEMPLATES
78+
*.dot text
79+
*.ejs text
80+
*.haml text
81+
*.handlebars text
82+
*.hbs text
83+
*.hbt text
84+
*.jade text
85+
*.latte text
86+
*.mustache text
87+
*.njk text
88+
*.phtml text
89+
*.tmpl text
90+
*.tpl text
91+
*.twig text
92+
93+
## LINTERS
94+
.csslintrc text
95+
.eslintrc text
96+
.htmlhintrc text
97+
.jscsrc text
98+
.jshintrc text
99+
.jshintignore text
100+
.stylelintrc text
101+
102+
## CONFIGS
103+
*.bowerrc text
104+
*.cnf text
105+
*.conf text
106+
*.config text
107+
.browserslistrc text
108+
.editorconfig text
109+
.gitattributes text
110+
.gitconfig text
111+
.gitignore text
112+
.htaccess text
113+
*.npmignore text
114+
*.yaml text
115+
*.yml text
116+
browserslist text
117+
Makefile text
118+
makefile text
119+
120+
## HEROKU
121+
Procfile text
122+
.slugignore text
123+
124+
## GRAPHICS
125+
*.ai binary
126+
*.bmp binary
127+
*.eps binary
128+
*.gif binary
129+
*.ico binary
130+
*.jng binary
131+
*.jp2 binary
132+
*.jpg binary
133+
*.jpeg binary
134+
*.jpx binary
135+
*.jxr binary
136+
*.pdf binary
137+
*.png binary
138+
*.psb binary
139+
*.psd binary
140+
*.svg text
141+
*.svgz binary
142+
*.tif binary
143+
*.tiff binary
144+
*.wbmp binary
145+
*.webp binary
146+
147+
## AUDIO
148+
*.kar binary
149+
*.m4a binary
150+
*.mid binary
151+
*.midi binary
152+
*.mp3 binary
153+
*.ogg binary
154+
*.ra binary
155+
156+
## VIDEO
157+
*.3gpp binary
158+
*.3gp binary
159+
*.as binary
160+
*.asf binary
161+
*.asx binary
162+
*.fla binary
163+
*.flv binary
164+
*.m4v binary
165+
*.mng binary
166+
*.mov binary
167+
*.mp4 binary
168+
*.mpeg binary
169+
*.mpg binary
170+
*.ogv binary
171+
*.swc binary
172+
*.swf binary
173+
*.webm binary
174+
175+
## ARCHIVES
176+
*.7z binary
177+
*.gz binary
178+
*.jar binary
179+
*.rar binary
180+
*.tar binary
181+
*.zip binary
182+
183+
## FONTS
184+
*.ttf binary
185+
*.eot binary
186+
*.otf binary
187+
*.woff binary
188+
*.woff2 binary
189+
190+
## EXECUTABLES
191+
*.exe binary
192+
*.pyc binary

docs/docs/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Include your project-specific ignores in this file
2+
# Read about how to use .gitignore: https://help.github.com/articles/ignoring-files
3+
# Useful .gitignore templates: https://github.com/github/gitignore

0 commit comments

Comments
 (0)