In the code
toWidget [julius|
$(function() {
foo();
bar();
)
|]
I want to comment out the call to bar
. But
toWidget [julius|
$(function() {
foo();
/* bar(); */
)
|]
trips up the C preprocessor, while Haskell style comments, i.e.
toWidget [julius|
$(function() {
foo();
{- bar(); -}
)
|]
go through to the browser.
This is a small example; my real case spans several lines, so a multi-line-commenting style would be required.
How would I comment out something in a shakespearian template, in particular a julius template?