Generate a new breakdance plugin project.
(TOC generated by verb using markdown-toc)
Install with npm:
$ npm install --save generate-breakdanceOnce both generate and generate-breakdance are installed globally, run the following command to run this generator's default task:
$ gen breakdanceAll tasks beside the default task are run by appending the task name to breakdance:.
Run the generator's default task to scaffold out a new breakdance plugin project.
Example
$ gen breakdanceGenerate only the index.js file for a breakdance plugin. Use --stem to change the file name.
Example
$ gen breakdance:plugin-only
$ gen breakdance:plugin-only --stem foo.jsScaffold out a complete project for a breakdance compiler plugin.
Example
$ gen breakdance:compilerGenerate only the index.js file for a compiler plugin. Use --stem to change the file name.
Example
$ gen breakdance:compiler-only
$ gen breakdance:compiler-only --stem foo.jsScaffold out a complete project for a breakdance parser plugin.
Example
$ gen breakdance:parserGenerate only the index.js file for a breakdance parser plugin. Use --stem to change the file name.
Example
$ gen breakdance:parser-only
$ gen breakdance:parser-only --stem foo.jsTo extend your own generator with the tasks and functionality of generate-breakdance, inside your generator add the following line of code:
app.use(require('generate-breakdance'));- breakdance-checklist: Plugin that adds checklist rendering support to breakdance, similar to task lists in github-flavored-markdown. | homepage
- breakdance-reflinks: Breakdance plugin that aggregates the urls from hrefs and src attributes at the bottom of… more | homepage
- breakdance-util: Utility functions for breakdance plugins. | homepage
- breakdance: Breakdance is a node.js library for converting HTML to markdown. Highly pluggable, flexible and easy… more | homepage
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
$ npm install -g verbose/verb#dev verb-generate-readme && verbRunning 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:
$ npm install && npm testJon Schlinkert
Copyright © 2017, Jon Schlinkert. MIT
This file was generated by verb-generate-readme, v0.4.2, on February 05, 2017.