gulp-remark-lint
v1.0.0
Published
Gulp task using remark and remark-lint to lint markdown files and output stylish results
Downloads
2
Readme
gulp-remark-lint
Gulp task using remark and remark-lint to lint markdown files and output stylish results
Install
$ npm i -DE gulp-remark-lint
Usage
Outputs results to stdout.
import gulp from gulp;
import lint from 'gulp-remark-lint';
export default lintMarkdown = () => gulp.src('source/**/*.md')
.pipe(lint({
'definition-case': false,
'emphasis-marker': '_'
}));
License
MIT © Andrey N Efimov