XSLT-import extension points
You can use these extension points to override XSLT processing steps in pre-processing and certain
transformation types. The value of the @file
attribute in the <feature>
element specifies a relative path to an XSL file in the current plug-in. The plug-in installer adds a XSL import
statement to the default DITA-OT code, so that the XSL override becomes part of the normal build.
Pre-processing
You can use the following extension points to add XSLT processing to modules in the pre-processing pipeline:
- dita.xsl.conref
- Overrides the pre-processing step that resolves conref.
- dita.xsl.maplink
- Overrides the
maplink
step in the pre-processing pipeline. This is the step that generates map-based links. - dita.xsl.mappull
- Overrides the
mappull
step in the pre-processing pipeline. This is the step that updates navigation titles in maps and causes attributes to cascade. - dita.xsl.mapref
- Overrides the
mapref
step in the pre-processing pipeline. This is the step that resolves references to other maps. - dita.xsl.topicpull
- Overrides the
topicpull
step in the pre-processing pipeline. This is the step that pulls text into<xref>
elements, as well as performing other tasks.
Transformations
You can use the following extension points to add XSLT processing to modules in DITA-OT transformations:
- dita.xsl.docbook
- Overrides the default DocBook transformation.
- dita.xsl.eclipse.plugin
- Overrides the step that generates the plugin.xml file for Eclipse Help.
- dita.xsl.rtf
- Overrides the default rich-text format (RTF) transformation.
- dita.xsl.troff-ast
- Overrides the intermediate block-and-phrase format that is generated as input to troff processing.
- dita.xsl.troff
- Overrides the XSL that converts block-and-phrase intermediate markup into troff.
- dita.xsl.xhtml
- Overrides the default HTML or XHTML transformation, including HTML Help and Eclipse Help. The referenced file is integrated directly into the XSLT step that generates XHTML.
- dita.xsl.xslfo
- Overrides the default PDF transformation (formerly known as PDF2). The referenced XSL file is integrated directly into the XSLT step that generates the XSL-FO.
Example
The following two files represent a complete (albeit simple) plug-in that adds a company banner to the XHTML output. The plugin.xml file declares an XSLT file that extends the XHTML processing; the xsl/header.xsl file overrides the default header processing to provide a company banner.