1.0.1 • Published 9 years ago

gulp-hammerdown v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

gulp-hammerdown

Gulp plugin for using hammerdown (streaming html to markdown generator)",

  • Issues with the output should be reported on the hammerdown issue tracker.*

Build Status

Install

$ npm install --save-dev gulp-hammerdown

Usage

var gulp = require('gulp');
var hammerdown = require('gulp-hammerdown');

gulp.task('documentation', function () {
	return gulp.src('./src/*.html')
		.pipe(hammerdown())
		.pipe(gulp.dest('./markdown/'));
});

API

hammerdown(options)

See the hammerdown options.

License

MIT © Tim Chaplin