Skip to content

Commit 22e6026

Browse files
authored
Merge pull request #197 from hasezoey/update
2 parents 8b75a86 + e05de4f commit 22e6026

15 files changed

+485
-160
lines changed

.editorconfig

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*.{ts, js}]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
indent_size = 2
7+
indent_style = space
8+
9+
[*.{yml, yaml, json}]
10+
indent_style = space
11+
indent_size = 2

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
.DS_Store
33
docs
44
node_modules
5+
yarn.lock

.gitmodules

-6
This file was deleted.

.mocharc.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ui: exports
2+
reporter: dot

History.md

+32-34
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
2020
2121

22-
2322
0.8.1 / 2016-03-29
2423
==================
2524

@@ -117,108 +116,107 @@ Context parsing has been re-factored into an array of functions that are iterate
117116
0.4.6 / 2014-07-09
118117
==================
119118

120-
* do not wrap @example contents with markdown
119+
* do not wrap @example contents with markdown
121120

122121
0.4.5 / 2014-07-09
123122
==================
124123

125-
* use marked for markdown rendering
126-
* multiline tags support (@example)
127-
* support for @template, @property, @define, @public, @private, @protected,
128-
@lends, @extends, @implements, @enum, @typedef
124+
* use marked for markdown rendering
125+
* multiline tags support (@example)
126+
* support for @template, @property, @define, @public, @private, @protected,
127+
@lends, @extends, @implements, @enum, @typedef
129128

130129
0.4.4 / 2013-07-28
131130
==================
132131

133-
* add support for variable names containing "$". fix #102
132+
* add support for variable names containing "$". fix #102
134133

135134
0.4.3 / 2013-03-18
136135
==================
137136

138-
* fix dox(1) --version. Closes #91
139-
* fix ctx.string on properties of a prototype
140-
* add support tab-indented comments
137+
* fix dox(1) --version. Closes #91
138+
* fix ctx.string on properties of a prototype
139+
* add support tab-indented comments
141140

142141
0.4.2 / 2013-01-18
143142
==================
144143

145-
* Prevent error when using --api & comments have no example code.
144+
* Prevent error when using --api & comments have no example code.
146145

147146
0.4.1 / 2012-11-11
148147
==================
149148

150-
* change # to . in --api
149+
* change # to . in --api
151150

152151
0.4.0 / 2012-11-09
153152
==================
154153

155-
* add TOC to --api. Closes #72
156-
* add gfm code blocks. Closes #71
157-
* remove implicit titles. Closes #70
154+
* add TOC to --api. Closes #72
155+
* add gfm code blocks. Closes #71
156+
* remove implicit titles. Closes #70
158157

159158
0.3.3 / 2012-10-16
160159
==================
161160

162-
* fix --api .receiver
161+
* fix --api .receiver
163162

164163
0.3.2 / 2012-10-01
165164
==================
166165

167-
* add dox --api
166+
* add dox --api
168167

169168
0.3.1 / 2012-04-25
170169
==================
171170

172-
* Fixed annoying title bug
171+
* Fixed annoying title bug
173172

174173
0.3.0 / 2012-03-27
175174
==================
176175

177-
* Added __@memberOf__ [olivernn]
178-
* Added __@arguments__ [olivernn]
179-
* Added __@borrows__ [olivernn]
176+
* Added __@memberOf__ [olivernn]
177+
* Added __@arguments__ [olivernn]
178+
* Added __@borrows__ [olivernn]
180179

181180
0.2.0 / 2012-02-23
182181
==================
183182

184-
* Added `-r, --raw` support. Closes #48
183+
* Added `-r, --raw` support. Closes #48
185184

186185
0.1.3 / 2011-12-08
187186
==================
188187

189-
* Added: allow arbitrary tags [logicalparadox]
190-
* Fixed function whitespace [TooTallNate]
188+
* Added: allow arbitrary tags [logicalparadox]
189+
* Fixed function whitespace [TooTallNate]
191190

192191
0.1.2 / 2011-10-22
193192
==================
194193

195-
* remove html escaping for now
194+
* remove html escaping for now
196195

197196
0.1.1 / 2011-10-10
198197
==================
199198

200-
* Fixed: colons in comment lines not intended as headers [Evan Owen]
199+
* Fixed: colons in comment lines not intended as headers [Evan Owen]
201200

202201
0.0.5 / 2011-03-02
203202
==================
204203

205-
* Adding "main" to package descriptor since "directories" are no longer supported.
204+
* Adding "main" to package descriptor since "directories" are no longer supported.
206205

207206
0.0.4 / 2011-01-20
208207
==================
209208

210-
* Added `--intro` support for including an intro file written in markdown [Alex Young]
209+
* Added `--intro` support for including an intro file written in markdown [Alex Young]
211210

212211
0.0.3 / 2010-07-15
213212
==================
214213

215-
* Linked h2s
214+
* Linked h2s
216215

217216
0.0.2 / 2010-07-15
218217
==================
219218

220-
* Collapsing files, click to open. Closes #19
221-
* Fixed ribbon position instead of absolute
222-
* Removed menu
223-
* Removed node-discount dependency, using markdown-js
224-
219+
* Collapsing files, click to open. Closes #19
220+
* Fixed ribbon position instead of absolute
221+
* Removed menu
222+
* Removed node-discount dependency, using markdown-js

Makefile

-11
This file was deleted.

0 commit comments

Comments
 (0)