0.1.1 • Published 4 years ago

metalsmith-markdown-taxonomy v0.1.1

Weekly downloads
6
License
MIT
Repository
github
Last release
4 years ago

metalsmith-markdown-taxonomy

Version Build Status

A metalsmith plugin to transform markdown into taxonomy structures.

Installation

$ npm install metalsmith-markdown-taxonomy

CLI 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