We read in a question and its answers, that we could tell JSF engine not to escape the values of an element:
<h:outputText value="#{messages.text}" style="font-weight:bold" escape="false" />
But how should I prevent escape on the whole template. My page reads a template from a http-url, which has contents that are semi-dynamic. That semi-dynamic template has mime-escaped encoded chars in it.
<ui:composition template="#{template.url}" ...
I tried doing
<ui:composition template="#{template.url}" escape="false"
But it does not work. Perhaps because, ui:composition does not take an escape attribute.
How do I prevent escape-effect on the whole template?