Yet Another Handlebars for Deno
A Deno library to use https://handlebarsjs.com/ in Deno.
Examples
const yandlebars = new Yandlebars({
baseDir: "views",
partialDir: "partials",
extension: ".hbs",
useCache: true
});
await yandlebars.render("index", {"greeting": "hello"});
Documentation
View it online at doc.deno.land