0.0.2 • Published 9 years ago

metalsmith-skip v0.0.2

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

metalsmith-skip

A metalsmith plugin to skip files. Based on metalsmith-drafts, but allows arbitrary keys (not just draft).

Installation

$ npm install metalsmith-skip

CLI Usage

Install via npm and then add the metalsmith-skip key to your metalsmith.json plugins, like so:

{
  "plugins": {
    "metalsmith-skip": {
      "keys": ["skip", "draft"]
    }
  }
}

Then in your files YAML front-matter add draft: true.

Javascript Usage

Pass the plugin to Metalsmith#use, like so:

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

metalsmith.use(skip({keys: ["skip", "draft"]));

Then in your files YAML front-matter add skip: true.

License

MIT