metalsmith-twig

1.6.2 • Public • Published

metalsmith-twig

A metalsmith Plugin for Twig based on justjohn/twig.js.

Install

  npm install metalsmith-twig

Configuration in metalsmith.json:

{
  "plugins": {
    "metalsmith-twig": {}
  }
}

Examples

Initialize (INIT):

var Metalsmith = require('metalsmith'),
	Twig = require('metalsmith-twig');

Metalsmith(__dirname)
	.use(twig())
	.build(function(err) {
		if (err) throw err;
	});

Options:

  • directory: (default: views) the directory for views.
  • global: (default: {}) global variables.
  • cache: (default: true) boolean if templatefiles cached.
  • twig: (default: undefined) overwrite the twig object.
  • allowInlineIncludes: (default: false) boolean if allow inline includes.
  • namespaces: (default: false) object with namespaces key => value (see twig.js project for more details).

Files

Source file src/index.md:

---
view: layout.html
title: The title
---
The Content

View

View views/layout.html:

<!doctype html>
<html>
	<head>
		<title>{{title}}</title>
	</head>
	<body>
		{{contents}}

		{{relativePath}}css/style.css
	</body>
</html>

Docs

Contributors

The MIT License (MIT)

Dependencies (2)

Dev Dependencies (3)

Package Sidebar

Install

npm i metalsmith-twig

Weekly Downloads

1

Version

1.6.2

License

MIT

Unpacked Size

6.16 kB

Total Files

11

Last publish

Collaborators

  • pkuebler