remark-lint/packages/remark-lint-heading-increment
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-heading-increment

Warn when headings increment with more than 1 level at a time.

Presets

This rule is included in the following presets:

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

Example

valid.md
In
# Alpha

## Bravo
Out

No messages.

invalid.md
In
# Charlie

### Delta
Out
3:1-3:10: Heading levels should increment by one level at a time

Install

npm install remark-lint-heading-increment

Usage

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

 ...
 "remarkConfig": {
   "plugins": [
     ...
     "lint",
+    "lint-heading-increment",
     ...
   ]
 }
 ...

Or use it on the CLI directly

remark -u lint -u lint-heading-increment 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-heading-increment'))
   .process('_Emphasis_ and **importance**', function (err, file) {
     console.error(report(err || file));
   });

License

MIT © Titus Wormer