-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug with function call on 0.7 #274
Comments
I'm not able to reproduce this issue. In a node console I can run:
Please provide more information about how you're calling the function. |
Here is the bug |
Thanks for this bug report. It was a subtle bug! This is fixed in version 0.7.2. |
If I have the following code :
{{#personLink}}{{#person}}{{name}}{{/person}}{{/personLink}}
I get the error
"Unclosed section: person"
I have to use
{{#personLink}} {{#person}}{{name}}{{/person}} {{/personLink}}
with spaces for it to work good.
By the way "Unclosed section: person" does not help enougth
I had to change line 566 by
try{
return nestTokens(tokens);
}catch(e){
throw new Error(e+" "+template);
}
to help me finding what was wrong and where
The text was updated successfully, but these errors were encountered: