I was trying to do something like this:
[-- VAR.mylink "<a href="mylink.html">Link Text</a>" --]
Except... well, obviously that won't work, because there's quotes in the value! I tried a few more-or-less standard things like:
[-- VAR.mylink '<a href="mylink.html">Link Text</a>' --]
[-- VAR.mylink "<a href=\"mylink.html\">Link Text</a>" --]
[-- VAR.mylink "<a href="mylink.html">Link Text</a>" --]
But these didn't seem to work. Is there any way to actually put quotes in there?
DaveE