gulp-insert-md

0.1.1 • Public • Published

gulp-insert-md

Test coverage Build Status Dependency Status devDependency Status NPM version node License npm download

Insert custom content to markdown file and update like a boss

Installation

$ npm install --save-dev gulp
$ npm install --save-dev gulp-insert-md

Usage

Gulpfile

const gulp = require('gulp');
const insert = require('gulp-insert-md');
 
gulp.task('default', ['clean'], () => {
  return gulp.src('src/**/*.md')
    .pipe(insert({
      // define tasks here
      task1: (content, callback) => callback(`task1\n${content}`),
      task2: (content, callback) => setTimeout(callback(`task2\n${content}`), 50)
    }))
    .pipe(gulp.dest('build'));
});

Before

Add some markdown comments to be insert flags like below:

[insert]: # (<start|end>:<filePath>[tasks])

Tasks will be executed serially.

gulp-insert-md
 
---
[insert]: # (start:test.js)
some old content here, will be replaced
[insert]: # (end:test.js)
---
[insert]: # (start:test1.js|task1|task2)
---
[insert]: # (end:test2.js|task1)
---

After

gulp-insert-md
 
---
[insert]: # (start:test.js)
'use strict';
console.log('test');
[insert]: # (end:test.js)
---
[insert]: # (start:test1.js|task1|task2)
task2
task1
'use strict';
console.log('test2');
[insert]: # (end:test1.js)
---
[insert]: # (start:test2.js)
task1
'use strict';
console.log('test2');
[insert]: # (end:test2.js|task1)
---

Test

$ npm run test
$ npm run travis

License

The MIT License (MIT)

Copyright (c) 2015 LingyuCoder

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i gulp-insert-md

Weekly Downloads

4

Version

0.1.1

License

MIT

Last publish

Collaborators

  • skyinlayer