plugins to check (lint) markdown code style
Go to file
Titus Wormer da865d01ea
9.1.0
2021-09-18 13:19:20 +02:00
.github/workflows Use npm workspaces 2021-08-17 15:25:54 +02:00
doc Update docs 2021-08-11 15:18:48 +02:00
packages 9.1.0 2021-09-18 13:19:20 +02:00
script Add urls pointing to docs on all messages 2021-09-18 12:54:49 +02:00
.editorconfig Refactor code-style to use xo 2016-08-02 22:44:50 +02:00
.gitignore Add JSDoc based types 2021-08-12 14:01:59 +02:00
.prettierignore Remove browser build 2021-08-10 15:30:58 +02:00
.remarkrc.js Use ESM 2021-08-11 15:18:43 +02:00
changelog.md Fix changelog.md filename 2018-10-23 10:23:07 +02:00
license Move LICENSE > license 2018-10-23 09:30:30 +02:00
logo.svg Update logo 2018-10-23 10:07:18 +02:00
package.json Use npm workspaces 2021-08-17 15:25:54 +02:00
readme.md Update docs 2021-08-11 15:18:48 +02:00
screenshot.png Update screenshot.png 2017-10-03 16:23:11 +02:00
test.js Add urls pointing to docs on all messages 2021-09-18 12:54:49 +02:00
tsconfig.json Add JSDoc based types 2021-08-12 14:01:59 +02:00

remark-lint

Build Coverage Downloads Chat Sponsors Backers

remark plugins to lint Markdown.

Ensuring the Markdown you (and contributors) write is of great quality will provide better rendering in all the different markdown parsers, and makes sure less refactoring is needed afterwards.

What is quality? Thats up to you, but there are sensible presets.

remark-lint is built on remark, a powerful Markdown processor powered by plugins (such as these).

Contents

Install

This package is ESM only: Node 12+ is needed to use it and it must be imported instead of required.

npm:

npm install remark-lint

CLI

Use remark-lint with remark-cli through a preset.

npm install --save-dev remark-cli remark-preset-lint-recommended

Then, configure remark in your package.json:

  // …
  "scripts": {
    "lint-md": "remark ."
  },
  // …
  "remarkConfig": {
    "plugins": ["remark-preset-lint-recommended"]
  }
  // …

Lets say theres an example.md that looks as follows:

* Hello

[World][]

Now, running our lint-md script with npm run lint-md yields:

example.md
       1:3  warning  Incorrect list-item indent: add 2 spaces  list-item-indent
  3:1-3:10  warning  Found reference to undefined definition   no-undefined-references
⚠ 2 warnings

See doc/rules.md for what those warnings are (and how to turn them off).

API

Use remark-lint together with remark:

npm install remark remark-preset-lint-markdown-style-guide

Lets say example.js looks as follows:

import {remark} from 'remark'
import {reporter} from 'vfile-reporter'
import remarkPresetLintMarkdownStyleGuide from 'remark-preset-lint-markdown-style-guide'

const file = remark()
  .use(remarkPresetLintMarkdownStyleGuide)
  .processSync('_Hello world_')

console.log(reporter(file))

Now, running node example.js yields:

  1:1-1:14  warning  Emphasis should use `*` as a marker  emphasis-marker  remark-lint

⚠ 1 warning

Configuring remark-lint

remark-lint is a remark plugin and when used on the CLI supports configuration through its configuration files.

An example .remarkrc file could look as follows:

{
  "plugins": [
    "remark-preset-lint-recommended",
    ["remark-lint-list-item-indent", false]
  ]
}

The preset turns on remark-lint-list-item-indent, but setting a plugin to false later turns it off again.

Using our example.md from before:

* Hello

[World][]

Now, running npm run lint-md yields:

example.md
   3:1-3:10  warning  Found reference to undefined definition   no-undefined-references  remark-lint

⚠ 2 warnings

You can also provide configuration comments to turn a rule on or off inside a file. Note that you cannot change a setting, such as maximum-line-length, just whether messages are shown or not. Read more about configuration comments in remark-message-controls documentation.

The following file will warn twice for the duplicate headings:

# Hello

## Hello

### Hello

The following file will warn once (the second heading is ignored, but the third is enabled again):

# Hello

<!--lint disable no-duplicate-headings-->

## Hello

<!--lint enable no-duplicate-headings-->

### Hello

Note

: Youll need the blank lines between comments and other nodes!

Using remark to fix your Markdown

remark-stringify can format markdown syntax. It ensures a single style is used: list items use one type of bullet (*, -, +), emphasis (* or _) and importance (__ or **) use a standard marker, and more.

Example

If you import('remark'), remark-stringify is included unless an output format other than markdown (such as HTML) is defined.

Say we have the following file, example.js, showing how formatting rules can be used:

import {reporter} from 'vfile-reporter'
import {remark} from 'remark'
import remarkLintEmphasisMarker from 'remark-lint-emphasis-marker'
import remarkLintStrongMarker from 'remark-lint-strong-marker'

remark()
  .use(remarkLintEmphasisMarker, '*')
  .use(remarkLintStrongMarker, '*')
  // ^ two `remark-lint` rules.
  .use({
    settings: {emphasis: '*', strong: '*'}
    // ^ `remark-stringify` settings.
  })
  .process('_Hello_, __world__!')
  .then((file) => {
    console.error(reporter(file))
    console.log(String(file))
  })

Now, running node example yields warnings and a formatted file:

    1:1-1:8  warning  Emphasis should use `*` as a marker  emphasis-marker  remark-lint
  1:10-1:19  warning  Strong should use `*` as a marker    strong-marker    remark-lint

⚠ 2 warnings
*Hello*, **world**!
Example

If youre using remark-stringify explicitly, you can pass options like any other plugin, like so:

import {reporter} from 'vfile-reporter'
import {unified} from 'unified'
import remarkParse from 'remark-parse'
import remarkStringify from 'remark-stringify'
import remarkLintEmphasisMarker from 'remark-lint-emphasis-marker'
import remarkLintStrongMarker from 'remark-lint-strong-marker'

unified()
  .use(remarkParse)
  .use(remarkLintEmphasisMarker, '*')
  .use(remarkLintStrongMarker, '*')
  // ^ two `remark-lint` rules.
  .use(remarkStringify, {emphasis: '*', strong: '*'})
  // ^ `remark-stringify` with settings.
  .process('_Hello_, __world__!')
  .then((file) => {
    console.error(reporter(file))
    console.log(String(file))
  })

Now, when running node example, this results in the same output as the previous example.

Example

If youre using remark-cli, remark-stringify is included unless an output format other than markdown (such as HTML) is defined. In this case you can configure remark-stringify settings using the -s, --settings flag or a "settings" field in remark configuration files.

Say we have the following file, example.md:

_Hello_, __world__!

And our package.json looks as follows:

  // …
  "remarkConfig": {
    "settings": {
      "emphasis": "*",
      "strong": "*"
    },
    "plugins": [
      "remark-lint-emphasis-marker",
      "remark-lint-strong-marker"
    ]
  }
  // …

Now, running remark example.md yields warnings and a formatted file:

*Hello*, **world**!
example.md
    1:1-1:8  warning  Emphasis should use `*` as a marker  emphasis-marker  remark-lint
  1:10-1:19  warning  Strong should use `*` as a marker    strong-marker    remark-lint

⚠ 2 warnings

Note: running remark example.md -o or remark example.md --output overwrites example.md and formats it. So, if youd run that twice (the first pass lints and fixes the Markdown, the second pass checks it again), youd see the output example.md: written as all warnings are now fixed.

Integrations

Were interested in more integrations. Let us know if we can help.

Rules

doc/rules.md lists all available official rules.

List of presets

Presets can be loaded just like other plugins.

List of external rules

External rules can be loaded just like normal rules.

Create a custom rule

Follow this comprehensive tutorial on how to create your own custom rule for remark.

Security

Use of remark-lint does not mutate the tree so there are no openings for cross-site scripting (XSS) attacks. Messages from linting rules may be hidden from user content though, causing builds to fail or pass, or changing a report.

Contribute

See contributing.md in remarkjs/.github for ways to get started. See support.md for ways to get help.

This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.

License

MIT © Titus Wormer