Skip to content
This repository was archived by the owner on May 26, 2022. It is now read-only.

Commit 02dc1be

Browse files
author
Zach Brown
committed
Switch to a new system based on reStructedText and Node.js
Based off of the suggestions and knowledge of several Sponge core team members. Along with all the work that went into setting up their documentation platform. So thanks to them!
1 parent 62d9d33 commit 02dc1be

16 files changed

+1099
-10
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Standardize line endings on LF
2+
* text=auto

.gitignore

Lines changed: 208 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,208 @@
1+
2+
# Created by https://www.gitignore.io/api/vim,sublimetext,emacs,notepadpp,windows,macos,linux
3+
4+
### Unit test and coverage reports ###
5+
htmlcov/
6+
.tox/
7+
.coverage
8+
.cache
9+
nosetests.xml
10+
coverage.xml
11+
12+
### Django stuff ###
13+
*.log
14+
15+
### Sphinx documentation ###
16+
docs/_build/
17+
build/
18+
19+
### PyBuilder ###
20+
target/
21+
*.pydevproject
22+
.metadata
23+
.gradle
24+
bin/
25+
tmp/
26+
*.tmp
27+
*.bak
28+
*.swp
29+
*~.nib
30+
local.properties
31+
.settings/
32+
.loadpath
33+
34+
### External tool builders ###
35+
.externalToolBuilders/
36+
37+
### Various ###
38+
# Transifex config
39+
.tx/
40+
# Node
41+
node_modules/
42+
# pip
43+
src/
44+
# sphinx jd
45+
javadoc_dump.txt
46+
# sphinx
47+
_build
48+
49+
### Emacs ###
50+
# -*- mode: gitignore; -*-
51+
*~
52+
\#*\#
53+
/.emacs.desktop
54+
/.emacs.desktop.lock
55+
*.elc
56+
auto-save-list
57+
tramp
58+
.\#*
59+
60+
# Org-mode
61+
.org-id-locations
62+
*_archive
63+
64+
# flymake-mode
65+
*_flymake.*
66+
67+
# eshell files
68+
/eshell/history
69+
/eshell/lastdir
70+
71+
# elpa packages
72+
/elpa/
73+
74+
# reftex files
75+
*.rel
76+
77+
# AUCTeX auto folder
78+
/auto/
79+
80+
# cask packages
81+
.cask/
82+
dist/
83+
84+
# Flycheck
85+
flycheck_*.el
86+
87+
# server auth directory
88+
/server/
89+
90+
# projectiles files
91+
.projectile
92+
93+
# directory configuration
94+
.dir-locals.el
95+
96+
### Linux ###
97+
98+
# temporary files which can be created if a process still has a handle open of a deleted file
99+
.fuse_hidden*
100+
101+
# KDE directory preferences
102+
.directory
103+
104+
# Linux trash folder which might appear on any partition or disk
105+
.Trash-*
106+
107+
# .nfs files are created when an open file is removed but is still being accessed
108+
.nfs*
109+
110+
### macOS ###
111+
*.DS_Store
112+
.AppleDouble
113+
.LSOverride
114+
115+
# Icon must end with two \r
116+
Icon
117+
118+
119+
# Thumbnails
120+
._*
121+
122+
# Files that might appear in the root of a volume
123+
.DocumentRevisions-V100
124+
.fseventsd
125+
.Spotlight-V100
126+
.TemporaryItems
127+
.Trashes
128+
.VolumeIcon.icns
129+
.com.apple.timemachine.donotpresent
130+
131+
# Directories potentially created on remote AFP share
132+
.AppleDB
133+
.AppleDesktop
134+
Network Trash Folder
135+
Temporary Items
136+
.apdisk
137+
138+
### NotepadPP ###
139+
# Notepad++ backups #
140+
*.bak
141+
142+
### SublimeText ###
143+
# cache files for sublime text
144+
*.tmlanguage.cache
145+
*.tmPreferences.cache
146+
*.stTheme.cache
147+
148+
# workspace files are user-specific
149+
*.sublime-workspace
150+
151+
# project files should be checked into the repository, unless a significant
152+
# proportion of contributors will probably not be using SublimeText
153+
# *.sublime-project
154+
155+
# sftp configuration file
156+
sftp-config.json
157+
158+
# Package control specific files
159+
Package Control.last-run
160+
Package Control.ca-list
161+
Package Control.ca-bundle
162+
Package Control.system-ca-bundle
163+
Package Control.cache/
164+
Package Control.ca-certs/
165+
Package Control.merged-ca-bundle
166+
Package Control.user-ca-bundle
167+
oscrypto-ca-bundle.crt
168+
bh_unicode_properties.cache
169+
170+
# Sublime-github package stores a github token in this file
171+
# https://packagecontrol.io/packages/sublime-github
172+
GitHub.sublime-settings
173+
174+
### Vim ###
175+
# swap
176+
[._]*.s[a-v][a-z]
177+
[._]*.sw[a-p]
178+
[._]s[a-v][a-z]
179+
[._]sw[a-p]
180+
# session
181+
Session.vim
182+
# temporary
183+
.netrwhist
184+
# auto-generated tag files
185+
tags
186+
187+
### Windows ###
188+
# Windows thumbnail cache files
189+
Thumbs.db
190+
ehthumbs.db
191+
ehthumbs_vista.db
192+
193+
# Folder config file
194+
Desktop.ini
195+
196+
# Recycle Bin used on file shares
197+
$RECYCLE.BIN/
198+
199+
# Windows Installer files
200+
*.cab
201+
*.msi
202+
*.msm
203+
*.msp
204+
205+
# Windows shortcuts
206+
*.lnk
207+
208+
# End of https://www.gitignore.io/api/vim,sublimetext,emacs,notepadpp,windows,macos,linux

0 commit comments

Comments
 (0)