I was wondering if there's a way to display a link in an ApexPages.Message. There's nothing mentioned in the documentation about it, so I simply did a :
ApexPages.Message(ApexPages.Severity.CONFIRM, '<a href="/">test</a>');
It seems like the special characters are transformed to their html entity, making the link unusable.
Any known workaround?