You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Rich Trott aaee43473b tools: update to ESLint 4.1.0 8 years ago
..
cli.js tools: update to ESLint 4.1.0 8 years ago
index.js doc: add eslint-plugin-markdown 8 years ago
package.json tools: update to ESLint 4.1.0 8 years ago
readme.md doc: add eslint-plugin-markdown 8 years ago

readme.md

remark Build Status Coverage Status Chat

The remark processor is a markdown processor powered by plug-ins.

Don’t need the parser? Or the compiler? That’s OK.

Installation

npm:

npm install remark

Usage

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

remark().use(lint).use(html).process('## Hello world!', function (err, file) {
    console.error(report(file));
    console.log(file.toString());
});

Yields:

<stdin>
        1:1  warning  Missing newline character at end of file  final-newline
   1:1-1:16  warning  First heading level should be `1`         first-heading-level
   1:1-1:16  warning  Don’t add a trailing `!` to headings      no-heading-punctuation

⚠ 3 warnings
<h2>Hello world!</h2>

License

MIT © Titus Wormer