Chapter 3. Customizing the stylesheets
In many circumstances, the stylesheets can be used “out of the box” without any customization. But sometimes you may need to change the formatting of certain elements. One common reason is to change the formatting of title pages or navigational features. In other cases, it may be to support local extensions to DocBook or simply to change the markup to support a particular use case.
Three approaches are possible, with increasing degrees of effort: changing stylesheet parameters, creating your own customization layer, or making broader changes to the stylesheet’s implementation.
The subject of broader implementation changes is the subject of Chapter 5, Implementation details. In this chapter, we’ll look at the easier options.
3.1. Changing stylesheet parameters
The DocBook xslTNG Stylesheets define a lot of parameters. They are all described in I. Parameter reference. If the change you want to make has already been parameterized, you may be able to achieve your goal simply by setting a parameter at runtime.
For example, if you want to change the formatting of dates and times
in date
elements, you can simply change the
date and time formatting
parameters. Similarly, if you want to change the numeration style of
ordered lists, you can simply change the ordered list item
numeration parameter.
These changes can be accomplished by simply passing the new values to the processor, on the command line or in a configuration file, for example. You do not have to write any XSLT to make these changes.
Parameter values apply to the entire document processed by the stylesheets. In some cases, you may wish to change the presentation of just one or small number of elements. This can often be accomplished with a db processing instruction in the source document itself. These customizations can also be accomplished without writing any XSLT.
If you want to make a change that isn’t supported by a parameter, or an ad hoc exception that doesn’t have a supporting processing instruction, you will have to write a customization layer. (You are invited to submit an issue with your use case if you think it would be of general interest.)
You may also find it convenient to write a customization layer if you want to change several parameters and you find it inconvenient to pass them all to the processor on every invocation.
3.2. Creating a customization layer
A customization layer is simply an XSLT stylesheet that you write which extends the DocBook stylesheets. The simplest* customization layer is:
1 |<?xml version="1.0" encoding="utf-8"?>
|<xsl:stylesheet
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
| xmlns:db="http://docbook.org/ns/docbook"
5 | xmlns:xs="http://www.w3.org/2001/XMLSchema"
| xmlns="http://www.w3.org/1999/xhtml"
| exclude-result-prefixes="db xs"
| version="3.0">
|
10 |<!-- This href has to point to your local copy
| of the stylesheets. -->
|<xsl:import href="docbook/xslt/docbook.xsl"/>
|
|</xsl:stylesheet>
This customization doesn’t do anything. But you can, for example, redefine parameters if you wish:
1 |<?xml version="1.0" encoding="utf-8"?>
|<xsl:stylesheet
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
| xmlns:db="http://docbook.org/ns/docbook"
5 | xmlns:xs="http://www.w3.org/2001/XMLSchema"
| xmlns="http://www.w3.org/1999/xhtml"
| exclude-result-prefixes="db xs"
| version="3.0">
|
10 |<xsl:import href="docbook/xslt/docbook.xsl"/>
|
|<xsl:param name="orderedlist-item-numeration"
| select="'1'"/>
|
15 |<xsl:param name="date-dateTime-format"
| select="'[D01] [MNn,*-3] [Y0001]
| at [H01]:[m01]'"/>
|
|</xsl:stylesheet>
This will have the effect of running the DocBook stylesheets with those two parameters set as specified.
If you want to change the HTML output for an element, you can write a template for that element in your customization layer. Consider this DocBook document:
1 |<?xml version="1.0" encoding="utf-8"?>
|<article xmlns="http://docbook.org/ns/docbook"
| version="5.1">
|<info>
5 |<title>Sample Document</title>
|<date>2020-07-05</date>
|</info>
|
|<para>This is a sample <productname>DocBook</productname>
10 |document.</para>
|
|</article>
Suppose that you decided you wanted to have the
productname
element link automatically to the vendor
webpage.
The DocBook xslTNG Stylesheets process
all DocBook elements in the
m:docbook
mode. This is different from previous XSLT stylesheets for DocBook
which simply used the default mode.
You must either specify a default mode in your customization layer or remember to specify the mode on match templates and template applications. If you forget the mode, you’ll get unexpected results!
One way to do that would be to redefine the template that processes the
productname
element:
1 |<?xml version="1.0" encoding="utf-8"?>
|<xsl:stylesheet
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
| xmlns:db="http://docbook.org/ns/docbook"
5 | xmlns:m="http://docbook.org/ns/docbook/modes" ①
| xmlns:xs="http://www.w3.org/2001/XMLSchema"
| xmlns="http://www.w3.org/1999/xhtml"
| exclude-result-prefixes="db m xs" ②
| version="3.0">
10 |
|<xsl:import href="docbook/xslt/docbook.xsl"/>
|
|<xsl:param name="orderedlist-item-numeration"
| select="'1'"/>
15 |
|<xsl:param name="date-dateTime-format"
| select="'[D01] [MNn,*-3] [Y0001]
| at [H01]:[m01]'"/>
|
20 |<xsl:template match="db:productname"
| mode="m:docbook"> ③
| <xsl:variable name="name"
| select="normalize-space(.)"/>
|④
25 | <xsl:variable name="url" as="xs:string?">
| <xsl:choose>
| <xsl:when test="$name='DocBook'">
| <xsl:sequence select="'https://docbook.org/'"/>
| </xsl:when>
30 | <xsl:when test="$name='DocBook xslTNG Stylesheets'">
| <xsl:sequence select="'https://xsltng.docbook.org/'"/>
| </xsl:when>
| <xsl:when test="$name='Wikipedia'">
| <xsl:sequence select="'https://wikipedia.org/'"/>
35 | </xsl:when>
| <xsl:otherwise>
| <!-- Unrecognized -->
| </xsl:otherwise>
| </xsl:choose>
40 | </xsl:variable>
|
| <xsl:choose>
| <xsl:when test="empty($url)">
| <xsl:next-match/> ⑤
45 | </xsl:when>
| <xsl:otherwise>
| <a href="{$url}" title="Home page">
| <xsl:next-match/> ⑤
| </a>
50 | </xsl:otherwise>
| </xsl:choose>
|</xsl:template>
|
|</xsl:stylesheet>
- ①
All of the DocBook elements are processed in the “
m:docbook
” mode.- ②
Remember to exclude all the namespaces you declare so that they don’t wind up scattered about in your HTML.
- ③
I repeat, all of the DocBook elements are processed in the “
m:docbook
” mode. I expect failure to declare this mode is going to be a common error.- ④
Yes, this whole listing is rather cramped. I’m trying to make it all narrow enough to fit in the display without making horizontal scrolling necessary.
- ⑤
Calling
xsl:next-match
invokes the underlying processing. The effect of this template is to wrap an HTML “a
” around the default processing forproductname
.
It’s worth pointing out that if the tag has an
xlink:href
attribute, that will generate an HTML
a
as well. A more robust stylesheet would check for that,
but I’m trying to keep the example simple.
3.3. Managing CSS stylesheets
The HTML that the DocBook xslTNG stylesheet produce is intended to be clean, robust markup for styling with CSS. Exactly how you control which stylesheet links are produced has changed several times. The current scheme is this:
If syntax highlighting is enabled, a link to the
$verbatim-syntax-highlight-css
stylesheet is included.If
$persistent-toc
is true a link to the$persistent-toc-css
stylesheet is included.If
$use-docbook-css
is true, links to the standard DocBook stylesheets are included. Those stylesheets aredocbook.css
(for all media),docbook-screen.css
(for screen media), anddocbook-page-setup.css
anddocbook-paged.css
(for print media).The DocBook element that is the context element when the HTML
head
is being generated is processed in them:html-head-links
mode. By default, that template does nothing, but you can change that in a customization layer.If any CSS stylesheets are defined in
$user-css-links
, they are included.The DocBook element that is the context element when the HTML
head
is being generated is processed in them:html-head-last
mode. By default, that template does nothing, but you can change that in a customization layer.
3.4. Creating something completely different
Your input documents go through several pre-processing steps
before they are rendered into HTML. If you want to produce completely
different outputs, the place to start is with root template in the
m:docbook
mode.
Consider, for example,
the task of creating a JSON version of the Table of Contents. In principle, you could
write your own stylesheet to do this, but leveraging the
DocBook xslTNG Stylesheets means you can make use of functions like
f:generate-id()
to create links.
To produce completely different results, override the root template in the
m:docbook
mode:
1 |<xsl:template match="/" mode="m:docbook">
| <xsl:document>
| <!-- your processing here -->
| </xsl:document>
5 |</xsl:template>
This template must return a document node.
Note that you can mix-and-match your processing with default
processing by processing DocBook elements in the
m:docbook
mode.
Here is a simple example of a stylesheet that produces a JSON version of the Table of Contents for a DocBook document:
1 |<?xml version="1.0" encoding="utf-8"?>
|<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
| xmlns:db="http://docbook.org/ns/docbook"
| xmlns:f="http://docbook.org/ns/docbook/functions"
5 | xmlns:m="http://docbook.org/ns/docbook/modes"
| xmlns:t="http://docbook.org/ns/docbook/templates"
| xmlns:xs="http://www.w3.org/2001/XMLSchema"
| xmlns="http://www.w3.org/1999/xhtml"
| exclude-result-prefixes="db f m t xs"
10 | version="3.0">
|
| <!-- This href has to point to your local copy
| of the stylesheets. -->
| <xsl:import href="docbook/xslt/docbook.xsl"/>
15 |
| <xsl:output method="text"/>
|
| <!-- Suppress xslTNG's default HTML output; note that this template
| must return a document node. -->
20 | <xsl:template match="/" mode="m:docbook">
| <xsl:document>
| <xsl:apply-templates select="." mode="TOC"/>
| </xsl:document>
| </xsl:template>
25 |
| <!-- The templates below generate a simple JSON ToC. -->
|
| <xsl:template match="/" mode="TOC">
| {"toc": [
30 | <xsl:apply-templates mode="TOC"/>
| ]}
| </xsl:template>
|
| <xsl:template match="db:part|db:article|db:section|db:chapter" mode="TOC"
35 | expand-text="yes">
| <xsl:if test="preceding-sibling::db:part
| | preceding-sibling::db:article
| | preceding-sibling::db:section
| | preceding-sibling::db:chapter">, </xsl:if>
40 | {{
| "ref": "{f:generate-id(.)}",
| "title": "{normalize-space(db:info/db:title)}",
| "subtitle": "{normalize-space(db:info/db:subtitle)}",
| "items": [
45 | <xsl:apply-templates select="db:part|db:article|db:section|db:chapter" mode="TOC"/>
| ]
| }}
| </xsl:template>
|
50 | <xsl:template match="*" mode="TOC">
| <xsl:apply-templates select="*" mode="TOC"/>
| </xsl:template>
|</xsl:stylesheet>
This example is meant as a starting point; it’s not robust as it only handles a few of the possible elements that might appear in a Table of Contents.
When processing documents this way, be aware that you are transforming the pre-processed,
normalized versions of your input documents. For example, whether or not you put
info
wrappers around the titles of your sections, in the pre-processed input,
title
s always appear inside info
wrappers.
This normalization greatly simplifies processing in many places.