Assemble engine plugin for processing swig templates.
npm install assemble-swig --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('assemble-swig');
Run this task with the grunt assemble
command.
In your project's Gruntfile, add a section named assemble
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
assemble: {
options: {
engine: 'swig',
swig: {
varControls: ["<%=", "%>"]
}
},
site: {
files: {
'_gh_pages/': ['src/templates/**/*.swig']
}
}
}
});
Type: String
Specify swig
as the current engine for processing templates:
assemble: {
options: {
engine: 'swig'
}
}
- sublime-swig syntax highlight for Swig Templates, in Sublime Text.
- sublime-monokai-extended
- sublime-markdown-extended
- assemble (see the live docs)
- assemble-swig
- assemble-swig-examples
- 2013-08-07 v0.1.0 New Assemble engine plugin for swig templates.
Project authored by Brian Woodward.
This file was generated on Wed Sep 11 2013 22:50:17.