0.1.1 • Published 6 years ago
metalsmith-markdown-taxonomy v0.1.1
metalsmith-markdown-taxonomy
A metalsmith plugin to transform markdown into taxonomy structures.
Installation
$ npm install metalsmith-markdown-taxonomyCLI Usage
  Install via npm and then add the metalsmith-markdown-taxonomy key to your metalsmith.json plugins, like so:
{
  "plugins": {
    "metalsmith-markdown-taxonomy": {
      "pattern": "categories/*.md",
    }
  }
}A file matching the pattern such as categories/colors.md containing:
# Colors
## Red
  * [](truck.md)
## Green
  * [](apple.md)
  * [](apple.md)Will add a color tag for files that are in the bullet lists i.e. { "colors": "Red" } will be merged in the truck.md file's metadata.
License
MIT