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

bmpvieira/gulp-reveal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

HTML to Reveal.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published