Skip to content

Commit a57ff06

Browse files
committed
Create gulpfile.js
1 parent afc2a8c commit a57ff06

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

gulpfile.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
var gulp = require('gulp');
2+
var markdown = require('gulp-markdown');
3+
4+
gulp.task('default', function () {
5+
return gulp.src('README.md')
6+
.pipe(markdown())
7+
.pipe(gulp.dest('html'));
8+
});

0 commit comments

Comments
 (0)