This package has been deprecated

Author message:

This package was split into two simpler plugins: metalsmith-layouts and metalsmith-in-place

metalsmith-templates

0.7.0 • Public • Published

metalsmith-templates

A metalsmith plugin to render files with templates.

You can use any templating engine supported by consolidate.js.

Installation

$ npm install metalsmith-templates

CLI Usage

Install the node modules and then add the metalsmith-templates key to your metalsmith.json plugins. The simplest use case just requires the template engine you want to use:

{
  "plugins": {
    "metalsmith-templates": "handlebars"
  }
}

If you want to specify additional options, pass an object:

{
  "plugins": {
    "metalsmith-templates": {
      "engine": "handlebars",
      "directory": "templates"
    }
  }
}

Javascript Usage

For the simplest use case, just pass your templating engine:

var templates = require('metalsmith-templates');
 
metalsmith.use(templates('swig'));

To specify additional options:

metalsmith.use(templates({
  engine: 'swig',
  directory: 'templates'
}));

License

MIT

Dependents (20)

Package Sidebar

Install

npm i metalsmith-templates

Weekly Downloads

164

Version

0.7.0

License

MIT

Last publish

Collaborators

  • ianstormtaylor
  • segmentio