hi,
will there be a way to parse double quote with #set or am I doing something wrong somewhere?

Example (valid):
#set($strRoot = "<a href='$root-url/session?action=delete'>Remove grant</a>")

but of course, it's not xhtml compliant.. I would have to do
#set($strRoot = "<a href=\"$root-url/session?action=delete\">Remove grant</a>")

unfortunately, the output of the double quote (\") is \" and not "

Of course ... I could do
#set($dblquote='"')
#set($strRoot = "<a href=$dblquote$root-url/session?action=delete$dblquote>Remove grant</a>")

Thanks,
Jeff

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to