Skip to content

Latest commit

 

History

History
60 lines (37 loc) · 1.06 KB

README.md

File metadata and controls

60 lines (37 loc) · 1.06 KB

metalsmith-asciidoc

A Metalsmith plugin to convert asciidoc files.

Build Status
Branch Status Build Dependencies
master Master Master Dependencies

Installation

$ npm install metalsmith-asciidoc

CLI Usage

Install via npm, then add metalsmith-asciidoc key to your metalsmith.json plugins section:

{
  "plugins": {
    "metalsmith-asciidoc": {}
  }
}

API Usage

Install via npm and require metalsmith-asciidoc, then pass to Metalsmith using the use method:

var asciidoc = require('metalsmith-asciidoc');

metalsmith.use(asciidoc());

Development

Clone the repo and install dependencies:

git clone https://github.com/ndhoule/metalsmith-asciidoc.git
npm install

Running tests:

make test

License

Code copyright 2014 Nathan Houle. Released under the MIT license.