markdown to html bootstrap page converter
Issues with the output should be reported on the marked issue tracker.
$ npm install --save-dev gulp-markdown2bootstrap
var gulp = require('gulp');
var markdown2bootstrap = require('gulp-markdown2bootstrap');
gulp.task('default', function () {
return gulp.src('intro.md')
.pipe(markdown2bootstrap({
theme: 'cerulean'
}))
.pipe(gulp.dest('dist'));
});
See the marked options.
Specify the bootswatch theme. see other themes
Type: String
Default: pure bootstrap
Specify the highlightjs theme. see other themes
Type: String
Default: github
Access the marked
object to customize the lexer, parser or renderer.
MIT © mitsuruog