Documentation
JSFToolbox

Search 

Contents

  1. Introduction
  2. Getting Started
  3. Developing Web Sites
  4. Using Components
  5. Internationalization
  6. Code View Support
  7. Design View Support
  8. Keyboard Shortcuts
  9. Tag Object Toolbars
  10. JSF Server Behaviors
  11. Property Inspectors
Selected 12. JSF Tag Reference

12. JSF Tag Reference

Contents > JSF Tag Reference > JSF Core Tags

10. JSF Core Tag Reference

Contents > JSF Core Tag Reference > f:verbatim

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}">
  <p>This HTML markup will be escaped.</p>
</f:verbatim>

HTML Output

&amp;lt;p&amp;gt;This HTML markup will be escaped.&amp;lt;/p&amp;gt

Tag Attributes

escape String
 
The escape attribute is a boolean flag indicating that generated markup must be escaped in a way that is appropriate for the markup language to be generated. The default value is false.