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
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