Metalsmith plugin to convert pug files
npm install metalsmith-pugMetalsmith plugin to convert pug files
[![license][license-img]][license-url]
[![release][release-img]][release-url]
[![semantic][semantic-img]][semantic-url]
`` bash`
npm install metalsmith-pug
I recommend using an optimized build matching your Node.js environment version, otherwise, the standard require would work just fine with any version of Node >= v4.0 .
` js
/*
* Node 7
*/
const metalsmith-jade = require('metalsmith-jade/lib/node7')
/*
* Node 6
*/
const metalsmith-jade = require('metalsmith-jade/lib/node6')
/*
* Node 4 (Default)
* Note: additional ES2015 polyfills may be required
*/
var metalsmith-jade = require('metalsmith-jade')
`
Pass options to the pug plugin and pass it to Metalsmith with the use method:
` js
import Metalsmith from 'metalsmith'
import pug from 'metalsmith-pug'
const options = {
pretty: false,
locals: {
postName: 'good post name'
},
filters: {
foo: block => block.replace('foo', 'bar')
}
}
new Metalsmith(__dirname)
.use(pug(options))
`
You can also use the plugin with the Metalsmith CLI by adding a key to your metalsmith.json file:
` json`
{
"plugins": {
"metalsmith-pug": {
"pretty": false
}
}
}
All options are passed directly to pug. If options has a locals key, that will be passed along to pug.
any of the options parameters for [pug][] with the additional plugin specific properties below:
| Name | Type | Required | Default | Details |
|-------------------|-----------|----------|---------|---------------------------------------------------------|
| useMetadata | Boolean | ❌ | false | Expose Metalsmith's global metadata to the pug template |locals
| | Object | ❌ | {} | Pass additional locals to the template |filters
| | Object | ❌ | {} | register functions to be used as template filters |
[pug`]: http://jade-lang.com/api/
----
> Author: Ahmad Nassri •
> Twitter: @AhmadNassri
[license-url]: LICENSE
[license-img]: https://badgen.net/github/license/ahmadnassri/node-metalsmith-pug
[release-url]: https://github.com/ahmadnassri/node-metalsmith-pug/releases
[release-img]: https://badgen.net/github/release/ahmadnassri/node-metalsmith-pug
[semantic-url]: https://github.com/ahmadnassri/node-metalsmith-pug/actions?query=workflow%3Arelease
[semantic-img]: https://badgen.net/badge/📦/semantically%20released/blue