Contents > JSF Core Tag Reference > f:verbatim
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}"> This HTML markup will be escaped. </f:verbatim>
HTML Output
<p>This HTML markup will be escaped.</p>