On Sat, Mar 26, 2016 at 08:16:19PM +0100, Adam Wolk wrote: > > > > lustache is an implementation of the mustache template system in Lua. > > > Looks great & works me - will gladly import if someone can drop a > second OK. > > OK awolk@
Anyone willing to test this and give a second OK?
Here is a small Lua snippet to test the package :
local lustache = require "lustache"
data = {
system = "OpenBSD",
version = "5.9"
}
print(lustache:render("Hello World from {{system}} {{version}}!", data))
