gulp-markdown-github-style
v1.1.1
Published
Markdown to HTML with github style, inspired by gulp-markdown.
Downloads
460
Readme
gulp-markdown-github-style
Markdown to HTML with github style, inspired by gulp-markdown.
Install
$ npm install --save-dev gulp-markdown-github-style
Usage
var gulp = require('gulp');
var markdown = require('gulp-markdown-github-style');
gulp.task('default', function () {
return gulp.src('README.md').pipe(markdown()).pipe(gulp.dest('dist'));
});
Options
markdown(options)
See the markdown-it options.
Issues with the output should be reported on the markdown-it issue tracker.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
License
this repo is released under the MIT License.