I want to embed a link in a JSF message, is this possible?
When I try it, the rendered html of the h:messages tag escapes the html characters. I tried setting the e
The escape="false" attributed you need is provided by the OmniFaces component. The OmniFaces utility library is available for JSF 2.
escape="false"
I posted this solution mentioned by @BalusC's comment as an answer since this is the most straightforward solution.