Markdown to HTML
npm install gulp-markdown> Markdown to HTML with marked
Issues with the output should be reported on the marked issue tracker.
``sh`
npm install --save-dev gulp-markdown
`js
import gulp from 'gulp';
import markdown from 'gulp-markdown';
export default () => (
gulp.src('intro.md')
.pipe(markdown())
.pipe(gulp.dest('dist'))
);
`
See the marked options.
Access the marked` object to customize the lexer, parser or renderer.