You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
842B

  1. = HEAD
  2. * Rename Renderer => Writer.
  3. * Fixed a bug with higher-order sections that prevented them from being
  4. passed the raw text of the section from the original template.
  5. * More concise token format. Tokens also include start/end indices in the
  6. original template.
  7. * High-level API is consistent with the Writer API.
  8. * Allow partials to be passed to the pre-compiled function (thanks @fallenice).
  9. * Don't use eval (thanks @cweider).
  10. = 0.6.0 / 31 Aug 2012
  11. * Use JavaScript's definition of falsy when determining whether to render an
  12. inverted section or not. Issue #186.
  13. * Use Mustache.escape to escape values inside {{}}. This function may be
  14. reassigned to alter the default escaping behavior. Issue #244.
  15. * Fixed a bug that clashed with QUnit (thanks @kannix).
  16. * Added volo support (thanks @guybedford).