]> git.lyx.org Git - lyx.git/blob - lib/docbook/epub3/chunk.xsl
Fix bug #11410.
[lyx.git] / lib / docbook / epub3 / chunk.xsl
1 <?xml version="1.0" encoding="utf-8"?>
2 <xsl:stylesheet 
3   xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
4   xmlns:d="http://docbook.org/ns/docbook"
5   xmlns:exsl="http://exslt.org/common"
6   xmlns:epub="http://www.idpf.org/2007/ops"
7   exclude-result-prefixes="exsl d"
8   version="1.0">
9
10 <!-- This is the main driver stylesheet file.  It imports or
11 includes all the components that it needs. -->
12
13 <!-- Import the module that customizes docbook elements -->
14 <!-- Put any customizations of element content in this module. -->
15 <xsl:import href="docbook.xsl"/>
16
17 <xsl:import href="../xhtml/chunk-common.xsl"/>
18
19 <xsl:include href="../xhtml/chunk-code.xsl"/>
20
21 <!-- The following module has templates that override the stock
22      xhtml templates for HTML5 output.  
23      It contains match templates with priority="1" attributes,
24      and named templates.  These override any templates that
25      handle chunking behavior -->
26 <xsl:include href="epub3-chunk-mods.xsl"/>
27
28 </xsl:stylesheet>