A super-simple templating language
Prescott is a templating language based on custom html/xml elements and extended
with a mustache syntax for values {{ example }}
.
It is made possible using PEG.js, inspired by using
Vue.js, and used by Generates to generate project
files for scaffolding/bootstrapping.
npm install --save prescott
import { compile } from 'prescott'
const template = '{{ name }}'
const data = { name: 'Coleman' }
const render = compile(template)
const output = render(data)
// Outputs: Coleman
Apache 2.0 with Commons Clause - See LICENSE
Created by Ian Walter