Did you know ... Search Documentation:
Pack pl_mustache -- prolog/mustache.pl
PublicShow source
 mustache(+Variables:list, +TemplateCodes:codes)// is det
converts mustache TemplateCodes into the rendered text by replacing {{ variable }} placeholders with the variables specified in the Variables list. Variables are of the form Var - Value or Var = Value. The value can be atomic, codes, string, or list of values
 mustache_from_file(+FileSpec, +Variables:list, -Out:codes) is det
Same as `mustache//2 but loads the template from the FileSpec. FileSpec is resolved by `absolute_file_name/3.