1.0.0 • Published 8 years ago

ejs2-loader v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

Usage

Documentation: Using loaders

in js

var template = require("ejs-compiled!./file.ejs");
// => returns the template function compiled with ejs templating engine.

// And then use it somewhere in your code
// Pass object with data
template(data) 

in webpack

module: {
    loaders: [
      {test: /\.ejs$/, loader: 'ejs2-loader?htmlmin=removeComments|removeAttributeQuotes|minifyCSS'}
    ]
}

HTMLMinifier, Options Quick Reference

Child Templates

<!-- Child Templates -->
<!-- path is relative to where webpack is being run -->
<!-- global variable -->
<%- var title = "This is really amazing" -%>
<%- include templates/header -%>

reference