jshsj124/moontemplate/types does not have a README file
pub(all) enum ContextValue {
Str(String)
List(Array[ContextValue])
Object(Array[(String, ContextValue)])
} derive(Eq)pub(all) struct Helper {
name : String
func : (String) -> String
}pub(all) enum Token {
Text(String)
Var(String)
Open(String, String)
Close(String)
Unescaped(String)
Comment(String)
}A Handlebars-style template engine in pure MoonBit