We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afc2a8c commit a57ff06Copy full SHA for a57ff06
gulpfile.js
@@ -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