0.1.7 • Published 10 years ago
assemble-jade v0.1.7
Assemble Jade 
Assemble engine plugin for processing jade templates.
Getting Started
npm install assemble-jade --save-devSwitch to jade engine in your Gruntfile
grunt.initConfig({
assemble: {
options: {
engine: 'jade'
}
}
});Using helpers will be straightforward as calling their names. As for partials, by using this module you'll have to use following jade syntax:
!= partial('sidebar')Thanks