0.0.1 • Published 10 years ago

metalsmith-give v0.0.1

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

metalsmith-give

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