derby-parsing
v0.8.0
Published
Add HTML template parsing to Derby
Downloads
87
Keywords
Readme
derby-parsing
This module contains the HTML-based template parsing for DerbyJS. Given a template source string, it produces parsed Template
s and Expression
s as defined in derbyjs/derby-templates.
Installation
npm install derby-parsing
Example usage
var derbyParsing = require('derby-parsing');
var templateSource = '<title>{{_page.title}}</title>';
var template = derbyParsing.createTemplate(templateSource);
Tests
npm test