Beware of whitespace lurking at the beginning of an expression. Whitespace placed before any symbol inside the handlebars will cause an error.
Correct:
{{expression}}{{dateFormat}}
Incorrect:
 {{ expression}}{{ dateFormat}} // note the leading whitespace
Error:
 {{expression {{field}} // second set of opening braces seen as new expression