I know it's a simple question, but I've got stuck here. How to display html formatting on liferay? I have tried to use outputText or outputLabel, but on the page view, it still display as is. For example (supposed backing.val value is output <b>text</b>):
<h:outputText value="#{backing.val}" />
--> output <b>text</b>
<p:outputLabel value="#{backing.val}" />
--> output <b>text</b>
I want the text is bold. How to do that? Thank you very much.