metalsmith-skip

0.0.2 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i metalsmith-skip

Weekly Downloads

1

Version

0.0.2

License

MIT

Last publish

Collaborators

  • dropofwill