Closed rhythmicdevil closed 12 years ago
Hi, Engine looks great so far. In your examples you have this which actually fails because 'name' is undefined:
<!DOCTYPE html>
{{if name}} Hello, ${name|capitalize}! {{else}} Hello, dear unknown! {{/if}}
Should be something like this:
{{if typeof(name) != 'undefined'}} Hello, ${name|capitalize}! {{else}} Hello, dear unknown! {{/if}}
This is just meant to be a general syntax example, not really a template working out of the box. I'm currently updating the doc, I'll add a line about this shortly.
Thanks for noticing.
Hi, Engine looks great so far. In your examples you have this which actually fails because 'name' is undefined:
<!DOCTYPE html>
{{if name}} Hello, ${name|capitalize}! {{else}} Hello, dear unknown! {{/if}}
Should be something like this:
<!DOCTYPE html>
{{if typeof(name) != 'undefined'}} Hello, ${name|capitalize}! {{else}} Hello, dear unknown! {{/if}}