metalsmith-transclude

A metalsmith plugin to transclude content


License
MIT
Install
npm install metalsmith-transclude@0.3.11

Documentation

metalsmith-transclude

Version Build Status

A metalsmith plugin to transclude documents.

Installation

$ npm install metalsmith-transclude

CLI Usage

Install via npm and then add the metalsmith-tranclude key to your metalsmith.json plugins, like so:

{
  "plugins": {
    "metalsmith-transclude": {
      "comments": false
    }
  }
}

This will follow expressions of this form:

index.md:

:[](include/file.md)

include/file.md:

Hi!

and include them inside the build: build/index.md:

Hi!

TODO:

  • Allow transclusion of remote content (this might already work)
  • Add options to parameterise transclusions.

License

MIT