Skip to content

Commit 7c3a349

Browse files
committed
update default value for --template/-t option
1 parent f840ec8 commit 7c3a349

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Diff for: Jake/articles/about-commandline

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Alternatively, the command-line options may be<a href="about-configuring-jsdoc.h
2323
<dt><code>-t</code>, <code>--template &lt;value&gt;</code></dt>
2424
<dd>
2525
The name of the template to use for JSDoc's output.
26-
The default is the "default" template (JSDoc has another template that comes with it, "haruki").
26+
The default is "templates/default", JSDoc's standard template.
2727
</dd>
2828
<dt><code>-c</code>, <code>--configure &lt;value&gt;</code></dt>
2929
<dd>

Diff for: Jake/articles/about-configuring-jsdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ To do this, use the longnames of the relevant options in an "opts" section of co
157157
...
158158
// You must remove the comments before adding these options to your .json file
159159
"opts": {
160-
"template": "default", // same as -t default
160+
"template": "templates/default", // same as -t templates/default
161161
"encoding": "utf8", // same as -e utf8
162162
"destination": "./out/", // same as -d ./out/
163163
"recurse": true, // same as -r
@@ -270,7 +270,7 @@ Example with all configuration options
270270
"monospaceLinks": false
271271
},
272272
"opts": {
273-
"template": "default", // same as -t default
273+
"template": "templates/default", // same as -t templates/default
274274
"encoding": "utf8", // same as -e utf8
275275
"destination": "./out/", // same as -d ./out/
276276
"recurse": true, // same as -r

Diff for: about-commandline.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ <h1>Command-line arguments to JSDoc</h1>
200200
<dt><code>-t</code>, <code>--template &lt;value&gt;</code></dt>
201201
<dd>
202202
The name of the template to use for JSDoc's output.
203-
The default is the "default" template (JSDoc has another template that comes with it, "haruki").
203+
The default is "templates/default", JSDoc's standard template.
204204
</dd>
205205
<dt><code>-c</code>, <code>--configure &lt;value&gt;</code></dt>
206206
<dd>

Diff for: about-configuring-jsdoc.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ <h2 name="configuration-file-command-line" id="configuration-file-command-line">
354354
...
355355
// You must remove the comments before adding these options to your .json file
356356
"opts": {
357-
"template": "default", // same as -t default
357+
"template": "templates/default", // same as -t templates/default
358358
"encoding": "utf8", // same as -e utf8
359359
"destination": "./out/", // same as -d ./out/
360360
"recurse": true, // same as -r
@@ -487,7 +487,7 @@ <h3>Miscellaneous</h3>
487487
"monospaceLinks": false
488488
},
489489
"opts": {
490-
"template": "default", // same as -t default
490+
"template": "templates/default", // same as -t templates/default
491491
"encoding": "utf8", // same as -e utf8
492492
"destination": "./out/", // same as -d ./out/
493493
"recurse": true, // same as -r

0 commit comments

Comments
 (0)