Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

readme.md

gulp-markdown Build Status

Markdown to HTML with marked

Issues with the output should be reported on the marked issue tracker.

Install

$ npm install --save-dev gulp-markdown

Usage

const gulp = require('gulp');
const markdown = require('gulp-markdown');

exports.default = () => (
	gulp.src('intro.md')
		.pipe(markdown())
		.pipe(gulp.dest('dist'))
);

API

markdown(options?)

See the marked options.

markdown.marked

Access the marked object to customize the lexer, parser or renderer.

You can’t perform that action at this time.