Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jjlharrison/gulp-multimarkdown
MultiMarkdown Plugin for Glup
https://github.com/jjlharrison/gulp-multimarkdown
Last synced: 18 days ago
JSON representation
MultiMarkdown Plugin for Glup
- Host: GitHub
- URL: https://github.com/jjlharrison/gulp-multimarkdown
- Owner: jjlharrison
- License: mit
- Created: 2014-07-12T10:00:32.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-21T01:52:18.000Z (almost 10 years ago)
- Last Synced: 2024-10-17T19:43:01.584Z (28 days ago)
- Language: JavaScript
- Size: 219 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gulp-multimarkdown
[![MIT Licence][licence-image]][licence-url] [![NPM Version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][david-dm-image]][david-dm-url]
[MultiMarkdown](http://fletcherpenney.net/multimarkdown/) Plugin for [Gulp](http://gulpjs.com).
This plugin is an adaptation of [gulp-markdown](https://github.com/sindresorhus/gulp-markdown).
## Install
```bash
$ npm install --save-dev gulp-markdown
```## Usage
```js
var gulp = require('gulp');
var markdown = require('gulp-multimarkdown');gulp.task('default', function () {
return gulp.src('intro.md')
.pipe(mulmarkdown())
.pipe(gulp.dest('dist'));
});
```[david-dm-image]: http://img.shields.io/david/jjlharrison/gulp-multimarkdown.svg?style=flat
[david-dm-url]: https://david-dm.org/jjlharrison/gulp-multimarkdown
[npm-image]: http://img.shields.io/npm/v/gulp-multimarkdown.svg?style=flat
[npm-url]: https://www.npmjs.org/package/gulp-multimarkdown
[travis-image]: http://img.shields.io/travis/jjlharrison/gulp-multimarkdown.svg?style=flat
[travis-url]: https://travis-ci.org/jjlharrison/gulp-multimarkdown
[licence-image]: http://img.shields.io/npm/l/gulp-multimarkdown.svg?style=flat
[licence-url]: https://tldrlegal.com/license/mit-license