A metalsmith plugin to transform markdown into taxonomy structures.
$ npm install metalsmith-markdown-taxonomy
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.
MIT