1.0.0 • Published 9 years ago

gulp-reveal v1.0.0

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

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

1.0.0

9 years ago

0.1.0

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

10 years ago

0.0.1

10 years ago