Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/efiand/gulp-remark-lint

Gulp task using remark and remark-lint to lint markdown files and output stylish results
https://github.com/efiand/gulp-remark-lint

npm-package portfolio-project

Last synced: about 21 hours ago
JSON representation

Gulp task using remark and remark-lint to lint markdown files and output stylish results

Awesome Lists containing this project

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.

```js
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](https://efiand.ru)