DESCR 460 B

12345678910
  1. lustache is an implementation of the mustache template system in Lua.
  2. Mustache is a logic-less template syntax. It can be used for HTML, config
  3. files, source code - anything. It works by expanding tags in a template
  4. using values provided in a hash or object.
  5. We call it "logic-less" because there are no if statements, else clauses,
  6. or for loops. Instead there are only tags. Some tags are replaced with a
  7. value, some nothing, and others a series of values.