Java method that generates html tags is escaping angle brackets...
smadirondack <[email protected]>
| Newsgroups | gmane.comp.jakarta.velocity.user |
|---|---|
| Message-ID | <[email protected]> |
From a Velocity template I call a java method that generates html tags
<area shape="rect" href="http://test.com/mylink" />
But it encodes so the page ends up with the following
<area shape="rect" href="http:.....
Here's part of the template:
#set($myLinks=$reportTool.getImageMapLinks($report))
$myLinks
In the java method I just use StringBuilder with its append method and
return the toString like the following:
StringBuilder sb = new StringBuilder();
sb.append("<area shape=\"rect\" href=\"http://test.com/mylink\" />");
return sb.toString();
What can I do so that the generated html is not encoded?
Thanks
--
View this message in context: http://old.nabble.com/Java-method-that-generates-html-tags-is-escaping-angle-brackets...-tp34024803p34024803.html
Sent from the Velocity - User mailing list archive at Nabble.com.