remark-lint/packages/remark-lint-no-blockquote-without-marker
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-blockquote-without-marker

Warn when blank lines without markers (>) are found in a blockquote.

Fix

remark-stringify adds markers to every line in a blockquote.

See Using remark to fix your markdown on how to automatically fix warnings for this rule.

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...
>
> ...Bar.
Out

No messages.

invalid.md
In
> Foo...

> ...Bar.
Out
2:1: Missing marker in blockquote

Install

npm install remark-lint-no-blockquote-without-marker

Usage

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

 ...
 "remarkConfig": {
   "plugins": [
     ...
     "lint",
+    "lint-no-blockquote-without-marker",
     ...
   ]
 }
 ...

Or use it on the CLI directly

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

License

MIT © Titus Wormer