0.1.1 • Published 9 years ago

metalsmith-orgmode v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

metalsmith-orgmode

A Metalsmith plugin to convert org mode files.

Installation

$ npm install metalsmith-orgmode

CLI Usage

Install via npm and then add the metalsmith-orgmode key to your metalsmith.json plugins with any org options you want, like so:

{
  "plugins": {
    "metalsmith-orgmode": {
      "key": "value"
    }
  }
}

Javascript Usage

Pass options to the org mode plugin and pass it to Metalsmith with the use method:

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

metalsmith.use(orgmode({
  key: value
}));

License

MIT