chunk.xsl 994 B

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xsl:stylesheet
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  4. xmlns:exsl="http://exslt.org/common"
  5. xmlns:epub="http://www.idpf.org/2007/ops"
  6. exclude-result-prefixes="exsl"
  7. version="1.0">
  8. <!-- $Id: chunk.xsl,v 1.1 2011-09-16 21:43:45 bobs Exp $ -->
  9. <!-- This is the main driver stylesheet file. It imports or
  10. includes all the components that it needs. -->
  11. <!-- Import the module that customizes docbook elements -->
  12. <!-- Put any customizations of element content in this module. -->
  13. <xsl:import href="docbook.xsl"/>
  14. <xsl:import href="../xhtml/chunk-common.xsl"/>
  15. <xsl:include href="../xhtml/chunk-code.xsl"/>
  16. <!-- The following module has templates that override the stock
  17. xhtml templates for HTML5 output.
  18. It contains match templates with priority="1" attributes,
  19. and named templates. These override any templates that
  20. handle chunking behavior -->
  21. <xsl:include href="epub3-chunk-mods.xsl"/>
  22. </xsl:stylesheet>