remark-lint/packages/remark-lint-no-shortcut-reference-link
2018-11-22 12:19:09 +01:00
..
index.js Refactor code-style 2018-05-19 13:51:23 +02:00
package.json Move URLs to HTTPS 2018-11-22 12:19:09 +01:00
readme.md Move URLs to HTTPS 2018-11-22 12:19:09 +01:00

remark-lint-no-shortcut-reference-link

Warn when shortcut reference links are used.

Shortcut references render as links when a definition is found, and as plain text without definition. Sometimes, you dont intend to create a link from the reference, but this rule still warns anyway. In that case, you can escape the reference like so: \[foo].

Presets

This rule is included in the following presets:

Preset Setting
remark-preset-lint-markdown-style-guide
remark-preset-lint-recommended

Example

valid.md
In
[foo][]

[foo]: http://foo.bar/baz
Out

No messages.

invalid.md
In
[foo]

[foo]: http://foo.bar/baz
Out
1:1-1:6: Use the trailing [] on reference links

Install

npm install remark-lint-no-shortcut-reference-link

Usage

You probably want to use it on the CLI through a config file:

 ...
 "remarkConfig": {
   "plugins": [
     ...
     "lint",
+    "lint-no-shortcut-reference-link",
     ...
   ]
 }
 ...

Or use it on the CLI directly

remark -u lint -u lint-no-shortcut-reference-link readme.md

Or use this on the API:

 var remark = require('remark');
 var report = require('vfile-reporter');

 remark()
   .use(require('remark-lint'))
+  .use(require('remark-lint-no-shortcut-reference-link'))
   .process('_Emphasis_ and **importance**', function (err, file) {
     console.error(report(err || file));
   });

License

MIT © Titus Wormer