Skip to content

Commit f85d03e

Browse files
committed
fix links (#17)
1 parent 2dc6301 commit f85d03e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

content/en/howto-commonjs-modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ module.exports = function ColorMixer() {
250250
### String, number, or boolean assigned to 'module.exports'
251251

252252
For value types (strings, numbers, and booleans) assigned to `module.exports`, you must document the
253-
exported value's type by using the [`@type` tag](type-tag) in the same JSDoc comment as the
253+
exported value's type by using the [`@type` tag][type-tag] in the same JSDoc comment as the
254254
`@module` tag:
255255

256256
{% example "String assigned to module.exports" %}

content/en/plugins-markdown.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ The `githubRepoName` and `githubRepoOwner` indicate which GitHub repo should be
9898
```
9999
{% endexample %}
100100

101-
[gfm]: https://help.github.com/articles/github-flavored-markdown
101+
[gfm]: https://help.github.com/articles/github-flavored-markdown/
102102

103103
### Why two parsers?
104104

howto-commonjs-modules.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ <h3 id="function-assigned-to-module-exports-">Function assigned to &#39;module.e
234234
</code></pre>
235235
</figure>
236236
<h3 id="string-number-or-boolean-assigned-to-module-exports-">String, number, or boolean assigned to &#39;module.exports&#39;</h3>
237-
<p>For value types (strings, numbers, and booleans) assigned to <code>module.exports</code>, you must document the exported value&#39;s type by using the <a href="type-tag"><code>@type</code> tag</a> in the same JSDoc comment as the
237+
<p>For value types (strings, numbers, and booleans) assigned to <code>module.exports</code>, you must document the exported value&#39;s type by using the <a href="tags-type.html"><code>@type</code> tag</a> in the same JSDoc comment as the
238238
<code>@module</code> tag:</p>
239239
<figure>
240240
<figcaption>String assigned to module.exports</figcaption><pre class="prettyprint lang-js"><code>/**

plugins-markdown.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ <h3 id="dominic-evilstreak-baggott-s-markdown-js">Dominic &quot;evilstreak&quot;
102102
</code></pre>
103103
</figure>
104104
<h3 id="github-flavored-markdown">GitHub Flavored Markdown</h3>
105-
<p>The alternative parser is the modified Showdown parser supplied by GitHub for their <a href="https://help.github.com/articles/github-flavored-markdown">GitHub Flavored Markdown (GFM)</a>.
105+
<p>The alternative parser is the modified Showdown parser supplied by GitHub for their <a href="https://help.github.com/articles/github-flavored-markdown/">GitHub Flavored Markdown (GFM)</a>.
106106
GFM provides several enhancements to standard Markdown syntax (see its documentation) intended to be useful to developers. It <em>also</em> has the ability
107107
to quickly link to GitHub repositories, files, and issues. It can be selected by setting the <code>parser</code> to <code>gfm</code> and supports three additional
108108
(and optional) configuration options.</p>

0 commit comments

Comments
 (0)