@cjser/gulp-markdown
v8.0.0-cjser.2
Published
Markdown to HTML
Maintainers
Readme
gulp-markdown
Markdown to HTML with
marked
Issues with the output should be reported on the marked issue tracker.
Install
npm install --save-dev gulp-markdownUsage
import gulp from 'gulp';
import markdown from 'gulp-markdown';
export default () => (
gulp.src('intro.md')
.pipe(markdown())
.pipe(gulp.dest('dist'))
);API
markdown(options?) (default export)
See the marked options.
marked (named export)
Access the marked object to customize the lexer, parser or renderer.
cjser
This package is a CommonJS-compatible build generated by cjser for projects that still need require() support. The source version matches the original npm package version, with a cjser prerelease suffix for this generated build.
Original repository: https://github.com/sindresorhus/gulp-markdown
