1
1
<!-- Generated by documentation.js. Update this documentation by updating the source code. -->
2
2
3
- # build
3
+ ## build
4
4
5
5
Generate JavaScript documentation as a list of parsed JSDoc
6
6
comments, given a root file as a path.
@@ -54,7 +54,7 @@ documentation.build(['index.js'], {
54
54
55
55
Returns ** [ undefined] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined ) ** calls callback
56
56
57
- # buildSync
57
+ ## buildSync
58
58
59
59
Generate JavaScript documentation given a list of inputs. This internal
60
60
method does not support require-following and it returns its results
@@ -100,7 +100,7 @@ var results = documentation.buildSync(['index.js']);
100
100
101
101
Returns ** [ Object] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object ) ** list of results
102
102
103
- # lint
103
+ ## lint
104
104
105
105
Lint files for non-standard or incorrect documentation
106
106
information, returning a potentially-empty string
@@ -145,14 +145,14 @@ documentation.lint('file.js', {}, function (err, lintOutput) {
145
145
146
146
Returns ** [ undefined] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined ) ** calls callback
147
147
148
- # formats
148
+ ## formats
149
149
150
150
Documentation's formats are modular methods that take comments
151
151
and options as input and call a callback with writable objects,
152
152
like stringified JSON, markdown strings, or Vinyl objects for HTML
153
153
output.
154
154
155
- # formats.html
155
+ ## formats.html
156
156
157
157
Formats documentation as HTML.
158
158
@@ -179,7 +179,7 @@ documentation.build(['index.js'], {}, function (err, res) {
179
179
180
180
Returns ** [ undefined] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined ) ** Calls callback.
181
181
182
- # formats.markdown
182
+ ## formats.markdown
183
183
184
184
Formats documentation as
185
185
[ Markdown] ( http://daringfireball.net/projects/markdown/ ) .
@@ -206,7 +206,7 @@ documentation.build(['index.js'], {}, function (err, res) {
206
206
207
207
Returns ** [ undefined] ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/undefined ) ** calls callback
208
208
209
- # formats.json
209
+ ## formats.json
210
210
211
211
Formats documentation as a JSON string.
212
212
0 commit comments