metalsmith-give

April 12, 2014 ยท View on GitHub

Use globbing patterns to give metadata to specific files.

Installation

npm install metalsmith-give

CLI

{
  "plugins": {
    "metalsmith-give": {
      "about/*": {
        "here": "about"
      },
      "blog/*": {
        "here": "blog"
      }
    }
  }
}

Javascript

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

.use(give({
  "about/*": {
    here: "about"
  },
  "blog/*": {
    here: "blog"
  }
}))

License

MIT