Skip to content

Commit 39d475c

Browse files
committed
Upload old libtcod docs to GitHub Pages.
0 parents  commit 39d475c

160 files changed

Lines changed: 8411 additions & 0 deletions

File tree

Some content is hidden

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

.gitattributes

Lines changed: 207 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,207 @@
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+
*.bash text eol=lf
20+
*.bat text eol=crlf
21+
*.cmd text eol=crlf
22+
*.coffee text
23+
*.css text
24+
*.htm text diff=html
25+
*.html text diff=html
26+
*.inc text
27+
*.ini text
28+
*.js text
29+
*.json text
30+
*.jsx text
31+
*.less text
32+
*.ls text
33+
*.map text -diff
34+
*.od text
35+
*.onlydata text
36+
*.php text diff=php
37+
*.pl text
38+
*.ps1 text eol=crlf
39+
*.py text diff=python
40+
*.rb text diff=ruby
41+
*.sass text
42+
*.scm text
43+
*.scss text diff=css
44+
*.sh text eol=lf
45+
*.sql text
46+
*.styl text
47+
*.tag text
48+
*.ts text
49+
*.tsx text
50+
*.xml text
51+
*.xhtml text diff=html
52+
53+
# Docker
54+
*.dockerignore text
55+
Dockerfile text
56+
57+
# Documentation
58+
*.ipynb text
59+
*.markdown text
60+
*.md text
61+
*.mdwn text
62+
*.mdown text
63+
*.mkd text
64+
*.mkdn text
65+
*.mdtxt text
66+
*.mdtext text
67+
*.txt text
68+
AUTHORS text
69+
CHANGELOG text
70+
CHANGES text
71+
CONTRIBUTING text
72+
COPYING text
73+
copyright text
74+
*COPYRIGHT* text
75+
INSTALL text
76+
license text
77+
LICENSE text
78+
NEWS text
79+
readme text
80+
*README* text
81+
TODO text
82+
83+
# Templates
84+
*.dot text
85+
*.ejs text
86+
*.haml text
87+
*.handlebars text
88+
*.hbs text
89+
*.hbt text
90+
*.jade text
91+
*.latte text
92+
*.mustache text
93+
*.njk text
94+
*.phtml text
95+
*.tmpl text
96+
*.tpl text
97+
*.twig text
98+
*.vue text
99+
100+
# Linters
101+
.csslintrc text
102+
.eslintrc text
103+
.htmlhintrc text
104+
.jscsrc text
105+
.jshintrc text
106+
.jshintignore text
107+
.stylelintrc text
108+
109+
# Configs
110+
*.bowerrc text
111+
*.cnf text
112+
*.conf text
113+
*.config text
114+
.babelrc text
115+
.browserslistrc text
116+
.editorconfig text
117+
.env text
118+
.gitattributes text
119+
.gitconfig text
120+
.htaccess text
121+
*.lock text -diff
122+
package-lock.json text -diff
123+
*.npmignore text
124+
*.yaml text
125+
*.yml text
126+
browserslist text
127+
Makefile text
128+
makefile text
129+
130+
# Heroku
131+
Procfile text
132+
.slugignore text
133+
134+
# Graphics
135+
*.ai binary
136+
*.bmp binary
137+
*.eps binary
138+
*.gif binary
139+
*.gifv binary
140+
*.ico binary
141+
*.jng binary
142+
*.jp2 binary
143+
*.jpg binary
144+
*.jpeg binary
145+
*.jpx binary
146+
*.jxr binary
147+
*.pdf binary
148+
*.png binary
149+
*.psb binary
150+
*.psd binary
151+
# SVG treated as an asset (binary) by default.
152+
*.svg text
153+
# If you want to treat it as binary,
154+
# use the following line instead.
155+
# *.svg binary
156+
*.svgz binary
157+
*.tif binary
158+
*.tiff binary
159+
*.wbmp binary
160+
*.webp binary
161+
162+
# Audio
163+
*.kar binary
164+
*.m4a binary
165+
*.mid binary
166+
*.midi binary
167+
*.mp3 binary
168+
*.ogg binary
169+
*.ra binary
170+
171+
# Video
172+
*.3gpp binary
173+
*.3gp binary
174+
*.as binary
175+
*.asf binary
176+
*.asx binary
177+
*.fla binary
178+
*.flv binary
179+
*.m4v binary
180+
*.mng binary
181+
*.mov binary
182+
*.mp4 binary
183+
*.mpeg binary
184+
*.mpg binary
185+
*.ogv binary
186+
*.swc binary
187+
*.swf binary
188+
*.webm binary
189+
190+
# Archives
191+
*.7z binary
192+
*.gz binary
193+
*.jar binary
194+
*.rar binary
195+
*.tar binary
196+
*.zip binary
197+
198+
# Fonts
199+
*.ttf binary
200+
*.eot binary
201+
*.otf binary
202+
*.woff binary
203+
*.woff2 binary
204+
205+
# Executables
206+
*.exe binary
207+
*.pyc binary

0 commit comments

Comments
 (0)