metalsmith-filenames

Metalsmith plugin to add filenames to entries


Keywords
metalsmith, metalsmith-plugin
License
MIT
Install
npm install metalsmith-filenames@1.0.0

Documentation

metalsmith-filenames Travis Build Status

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}})