Skip to content

MoOx/metalsmith-filenames

Repository files navigation

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