From a57ff06b66c8e40ac0c162ff4171e34bc4cb0769 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BF=B7=E6=B8=A1?= Date: Thu, 29 Oct 2015 09:09:15 +0800 Subject: [PATCH] Create gulpfile.js --- gulpfile.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 gulpfile.js diff --git a/gulpfile.js b/gulpfile.js new file mode 100644 index 0000000..35427ed --- /dev/null +++ b/gulpfile.js @@ -0,0 +1,8 @@ +var gulp = require('gulp'); +var markdown = require('gulp-markdown'); + +gulp.task('default', function () { + return gulp.src('README.md') + .pipe(markdown()) + .pipe(gulp.dest('html')); +});