Skip to main content
Version: 2.x.x

Caveats

Reserved variable names

Don't use these variables in your templates

  • it
  • tR
  • cb
  • E

Parsing

  • Using RegExp literals inside your templates has a high likelihood of making them fail. Please, put that logic in a helper or something. If you really must, use new RegExp('a|b') instead.

Delimiters

  • Your closing delimeter can't contain ', ", or ``` (probably: I haven't actually tried it)