remark-lint-double-link
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

remark-lint-double-link

This remark-lint rule ensures that there will be no duplicate links URL in the list

Actions Statusnodenpm versionDependency StatusXO code styleCoveralls status

npm downloadsnpm

Why?

Checks only duplicate URL, which helps to get rid of duplicates with the same link names or with different ones. The main policy is not to duplicate links to the same resources

<!-- Invalid -->

[link-1](http://link-1)
[link-2](http://link-1)

<!-- Valid -->

[link](http://link-1)

Using the rule

Via .remarkrc

npm install -g remark-cli
npm install remark-lint remark-lint-alphabetize-lists

Then, set up your .remarkrc:

{
  "plugins": [
    "lint",
    "lint-double-link"
  ]
}

Now you can use the following command to run the lint:

remark xxx.md

Via CLI

npm install -g remark-cli
npm install remark-lint remark-lint-double-link
remark -u lint -u lint-double-link xxx.md

Readme

Keywords

Package Sidebar

Install

npm i remark-lint-double-link

Weekly Downloads

502

Version

0.2.0

License

MIT

Unpacked Size

5.72 kB

Total Files

5

Last publish

Collaborators

  • scrum