Markdown to HTML with
marked
Issues with the output should be reported on the marked issue tracker.
npm install --save-dev gulp-markdownimport 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.