metalsmith-remarkable
December 24, 2014 ยท View on GitHub
A Metalsmith plugin to convert markdown files using remarkable.
(Copy & Paste from https://github.com/segmentio/metalsmith-markdown)
Installation
$ npm install git+https://github.com/mulyoved/metalsmith-remarkable.git
CLI Usage
Install via npm and then add the metalsmith-markdown key to your metalsmith.json plugins with any Marked options you want, like so:
{
"plugins": {
"metalsmith-remarkable": {
}
}
}
Javascript Usage
Pass options to the markdown plugin and pass it to Metalsmith with the use method:
var markdown = require('metalsmith-remarkable');
metalsmith.use(markdown({
}));
License
MIT