Deno Tiny Templates [](https://travis-ci.org/zekth/denotinytemplates)
May 13, 2019 ยท View on GitHub
A template parser for Deno.
Usage
import { Template } from "./mod.ts";
const tmpl = decoder.decode(Deno.readFileSync("./myfile.tmpl"));
const t = new Template(tmpl);
t.render({ object: "to", pass: "to", my: "template" });
Options
openBracket: Openning bracket of your var. Default :{{closeBracket: Openning bracket of your var. Default :}}debug: If true output warning when value is not found in given object. Default :false