8000 update order in which we search for various files (#162) · ethereum-node/jsdoc.github.io@60664fa · GitHub
[go: up one dir, main page]

Skip to content

Commit 60664fa

Browse files
committed
update order in which we search for various files (jsdoc#162)
1 parent 805c71c commit 60664fa

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

about-configuring-default-template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ <h2 id="overriding-the-default-template-s-layout-file">Overriding the default te
9595
this file defines which CSS and JavaScript files are loaded for each page. In JSDoc 3.3.0 and later, you can specify your own <code>layout.tmpl</code> file
9696
to use, which allows you to load your own custom CSS and JavaScript files in addition to, or instead of, the standard files.</p>
9797
<p>To use this feature, set the option <code>templates.default.layoutFile</code> to the path to your customized layout file. Relative paths are resolved against
98-
the path to the configuration file; the current working directory; and the JSDoc directory, in that order.</p>
98+
the current working directory; the path to the configuration file; and the JSDoc directory, in that order.</p>
9999
<h2 id="related-links">Related Links</h2>
100100
<p>
101101
<a href="about-configuring-jsdoc.html">Configuring JSDoc with a configuration file</a>

about-plugins.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ <h2 id="creating-and-enabling-a-plugin">Creating and Enabling a Plugin</h2>
5050
<ol>
5151
<li>Create a JavaScript module to contain your plugin code.</li>
5252
<li>Include that module in the <code>plugins</code> array of <a href="about-configuring-jsdoc.html">JSDoc&#39;s configuration file</a>. You can specify an absolute
53-
or relative path. If you use a relative path, JSDoc searches for the plugin in the directory where the configuration file is located; the current working
54-
directory; and the JSDoc directory, in that order.</li>
53+
or relative path. If you use a relative path, JSDoc searches for the plugin in the current working directory; the directory where the configuration file
54+
is located; and the JSDoc directory, in that order.</li>
5555
</ol>
5656
<p>For example, if your plugin is defined in the <code>plugins/shout.js</code> file in the current working directory, you would add the string <code>plugins/shout</code> to the <code>plugins</code> array in your JSDoc configuration file:</p>
5757
<figure>

content/en/about-configuring-default-template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,5 @@ use, which allows you to load your own custom CSS and JavaScript files in additi
9090
of, the standard files.
9191

9292
To use this feature, set the option `templates.default.layoutFile` to the path to your customized
93-
layout file. Relative paths are resolved against the path to the configuration file; the current
94-
working directory; and the JSDoc directory, in that order.
93+
layout file. Relative paths are resolved against the current working directory; the path to the
94+
configuration file; and the JSDoc directory, in that order.

content/en/about-plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ There are two steps required to create and enable a new JSDoc plugin:
1010
1. Create a JavaScript module to contain your plugin code.
1111
2. Include that module in the `plugins` array of [JSDoc's configuration file][config-file]. You can
1212
specify an absolute or relative path. If you use a relative path, JSDoc searches for the plugin in
13-
the directory where the configuration file is located; the current working directory; and the JSDoc
13+
the current working directory; the directory where the configuration file is located; and the JSDoc
1414
directory, in that order.
1515

1616
For example, if your plugin is defined in the `plugins/shout.js` file in the current working

0 commit comments

Comments
 (0)
0