Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 796 Bytes

README.md

File metadata and controls

42 lines (29 loc) · 796 Bytes

metalsmith-org

A Metalsmith plugin to convert org-mode files.

Installation

npm install metalsmith-org

CLI Usage

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

{
  "plugins": {
    "metalsmith-org": {
      "headerOffset": 1
    }
  }
}

Javascript Usage

Pass options to the org plugin and pass it to Metalsmith with the use method. metalsmith-org does not have any options of its own, everything here will be passed on to org-js:

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

metalsmith.use(org({
    headerOffset: 1
}));

License

MIT