*
Core Tag HandlersCore Tag Handlers
hoglet, in it's default deployment, comes with a number of core handlers that perform specific tasks. A handler is an arbitrary piece of Java code that implements the org.hoglet.handlers.core.TagHandler interface.

They are:
ClassPurposeSuggested TagThread Safe
Text Handler Click to view the Javadoc informationAllows the content of a tag to be wrapped in a text template (usually HTML).AnyYes
Code Handler Click to view the Javadoc informationAllows source code to be formatted and keywords for the relevant language to be highlighted, also supports outputting of line numbers.Any - should be name of language, i.e. java, c, perl etc.Yes
Link Handler Click to view the Javadoc informationAllows a link to be included.linkYes
JavaDoc Handler Click to view the Javadoc informationAllows a link to a Javadoc reference to be included.javadocYes
XML Handler Click to view the Javadoc informationAllows a chunk of valid XML to be formatted and highlighted.xmlYes
Table Row Handler Click to view the Javadoc informationAllows a row of a table to be generated.trYes
Hoglet Handler Click to view the Javadoc informationAllows hoglet tags to be formatted and highlighted.hogletYes
Each of the handlers above implement the JDOMInitable which means that they can be initialised using a JDOM External site, opens in new window org.jdom.Element. See: XML Configured Processor for more details.
*