|
The Verbatim tag creates an output component as a child of the
component associated with the enclosing tag. An output component
renders the output contained in the body of this tag, such as HTML
markup.
Example:
<f:verbatim escape="#{true}"> <p>This HTML markup will be escaped.</p> </f:verbatim>
HTML Output
&lt;p&gt;This HTML markup will be escaped.&lt;/p&gt
|