metalsmith-filenames [](https://travis-ci.org/MoOx/metalsmith-filenames)
November 21, 2017 ยท View on GitHub
Metalsmith plugin to add filenames to entries
Installation
$ npm install metalsmith-filenames
Usage
import Metalsmith from "metalsmith"
import filenames from "metalsmith-filenames"
new Metalsmith("./")
.use(
filenames()
)
.build(err => {if (err) {throw err}})