Skip to content
This repository has been archived by the owner on Dec 8, 2021. It is now read-only.

Latest commit

 

History

History
32 lines (24 loc) · 613 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 613 Bytes

gulp-reveal

js-standard-style

Install

Install with npm

npm install gulp-reveal

Example

var gulp = require('gulp');
var markdown = require('gulp-markdown');
var reveal = require('gulp-reveal');

gulp.task('default', function () {
  gulp.src('index.md')
    .pipe(markdown())
    .pipe(reveal())
    .pipe(gulp.dest('.'));
});

gulp.task('watch', function () {
  gulp.watch('*.md', ['default']);
});

License

MIT