Assemble engine plugin for processing mustache templates.
npm install assemble-mustache#assemble-mustache
> Mustache engine for Assemble.
##Usage
Install assemble-mustache:
npm install assemble-mustache --save-dev
Once done, specify mustache as the engine in your assemble task:
assemble: {
options: {
engine: 'mustache',
partials: ['partials/*/.mustache'],
layout: ['layouts/default.mustache'],
},
site: {
src: ['docs/*.mustache'],
dest: './'
}
}
###Markdown
####{{#markdown}}
Block helper for embedding markdown content inside HTML, and rendering it to HTML at build time.
Include markdown from specified file(s), and render it to HTML
{{#md}}
file/to/include/post.md
{{/md}}