Hi, Is there any way to escape HTML code using the <h:message> tag?
Suppose I have the following message from a ResourceBundle:
message1 = Press the <a href="somePage.jsf"> link </a> to go to the right page.
and then I use the messages tag:
<h:messages value="#{messagesBundle.message1}" />
but the literal string gets showed :-(
Any ideas?

