metalsmith-orgmode
v0.1.1
Published
A Metalsmith plugin to convert org mode files to html.
Downloads
3
Readme
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