An open API service indexing awesome lists of open source software.

https://github.com/breakdance/gulp-breakdance

Gulp plugin for breakdance, the HTML-to-markdown converter for node.js.
https://github.com/breakdance/gulp-breakdance

conversion convert converter html html-to-markdown html-to-md markdown markup md to-markdown to-md

Last synced: about 1 year ago
JSON representation

Gulp plugin for breakdance, the HTML-to-markdown converter for node.js.

Awesome Lists containing this project

README

          

# gulp-breakdance [![NPM version](https://img.shields.io/npm/v/gulp-breakdance.svg?style=flat)](https://www.npmjs.com/package/gulp-breakdance) [![NPM monthly downloads](https://img.shields.io/npm/dm/gulp-breakdance.svg?style=flat)](https://npmjs.org/package/gulp-breakdance) [![NPM total downloads](https://img.shields.io/npm/dt/gulp-breakdance.svg?style=flat)](https://npmjs.org/package/gulp-breakdance) [![Linux Build Status](https://img.shields.io/travis/breakdance/gulp-breakdance.svg?style=flat&label=Travis)](https://travis-ci.org/breakdance/gulp-breakdance)

> Gulp plugin for breakdance, the HTML-to-markdown converter for node.js.

## Install

Install with [npm](https://www.npmjs.com/):

```sh
$ npm install --save gulp-breakdance
```

## Heads up!

Please report all bugs related to HTML-to-markdown conversion on the [breakdance issue tracker](https://github.com/breakdance/breakdance/issues).

## Usage

Visit [breakdance.io](http://breakdance.io) for all available features and options.

```js
var breakdance = require('gulp-breakdance');

gulp.task('breakdance', function() {
return gulp.src('foo/*.html')
.pipe(breakdance([options]))
.pipe(gulp.dest('bar'));
});
```

## About

### Related projects

* [breakdance](https://www.npmjs.com/package/breakdance): Breakdance is a node.js library for converting HTML to markdown. Highly pluggable, flexible and easy… [more](http://breakdance.io) | [homepage](http://breakdance.io "Breakdance is a node.js library for converting HTML to markdown. Highly pluggable, flexible and easy to use. It's time for your markup to get down.")
* [gulp-html-toc](https://www.npmjs.com/package/gulp-html-toc): Gulp plugin for html-toc, for generating a HTML table of contents. | [homepage](https://github.com/jonschlinkert/gulp-html-toc "Gulp plugin for html-toc, for generating a HTML table of contents.")
* [gulp-htmlmin](https://www.npmjs.com/package/gulp-htmlmin): gulp plugin to minify HTML. | [homepage](https://github.com/jonschlinkert/gulp-htmlmin#readme "gulp plugin to minify HTML.")

### Contributing

Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).

Please read the [contributing guide](.github/contributing.md) for advice on opening issues, pull requests, and coding standards.

### Building docs

_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_

To generate the readme, run the following command:

```sh
$ npm install -g verbose/verb#dev verb-generate-readme && verb
```

### Running tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

```sh
$ npm install && npm test
```

### Author

**Jon Schlinkert**

* [github/jonschlinkert](https://github.com/jonschlinkert)
* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)

### License

Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
Released under the [MIT License](LICENSE).

***

_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on June 04, 2017._