Awesome
broccoli-beml
Plugin for processing BEML templates
How to use
Install broccoli-beml as a dev dependency:
npm install broccoli-beml --save-dev
Then, add it to your Brocfile.js:
var beml = require('broccoli-beml');
var htmls = beml('pathToFolder', {
// These options are defaults and can be ignored
srcDir: '/',
destDir: '/',
files: ['**/*.html'],
elemPrefix: '__',
modPrefix: '_',
modDlmtr: '_'
});
module.exports = htmls;