You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been trying to get whisker working with LaTeX (which uses a lot of braces)
At first I thought it wouldn't be an issue since there's proper nesting:
>template<-++'Hello {{{{name}}}}+ You have just won ${{value}}!+ + '>text<- whisker.render(template, data)
> cat(text)
HelloYouhavejustwon$10000!
So I thought, fine, I'll just switch the delimeters:
>template<-+'+ {{=<% %>=}}+ Hello {{<%name%>}}+ You have just won ${{<%value%>}}!+ + '>text<- whisker.render(template, data)
> cat(text)
Hello~~~~~~~~~~~~~Chris{{
Youhavejustwon$}}10000~~~~~~~~~~~~~!
Which is a bit weird? Apologies if I'm just doing something incorrectly.
The text was updated successfully, but these errors were encountered:
I've been trying to get whisker working with LaTeX (which uses a lot of braces)
At first I thought it wouldn't be an issue since there's proper nesting:
So I thought, fine, I'll just switch the delimeters:
Which is a bit weird? Apologies if I'm just doing something incorrectly.
The text was updated successfully, but these errors were encountered: