dita2html5Impl_template.xsl 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. This file is part of the DITA Open Toolkit project.
  4. Copyright 2016 Jarno Elovirta
  5. See the accompanying LICENSE file for applicable license.
  6. -->
  7. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  8. version="2.0">
  9. <xsl:import href="plugin:org.dita.base:xsl/common/output-message.xsl"/>
  10. <xsl:import href="plugin:org.dita.base:xsl/common/dita-utilities.xsl"/>
  11. <xsl:import href="plugin:org.dita.base:xsl/common/related-links.xsl"/>
  12. <xsl:import href="plugin:org.dita.base:xsl/common/dita-textonly.xsl"/>
  13. <xsl:import href="plugin:org.dita.html5:xsl/topic.xsl"/>
  14. <xsl:import href="plugin:org.dita.html5:xsl/concept.xsl"/>
  15. <xsl:import href="plugin:org.dita.html5:xsl/glossdisplay.xsl"/>
  16. <xsl:import href="plugin:org.dita.html5:xsl/task.xsl"/>
  17. <xsl:import href="plugin:org.dita.html5:xsl/reference.xsl"/>
  18. <xsl:import href="plugin:org.dita.html5:xsl/ut-d.xsl"/>
  19. <xsl:import href="plugin:org.dita.html5:xsl/sw-d.xsl"/>
  20. <xsl:import href="plugin:org.dita.html5:xsl/pr-d.xsl"/>
  21. <xsl:import href="plugin:org.dita.html5:xsl/ui-d.xsl"/>
  22. <xsl:import href="plugin:org.dita.html5:xsl/hi-d.xsl"/>
  23. <xsl:import href="plugin:org.dita.html5:xsl/abbrev-d.xsl"/>
  24. <xsl:import href="plugin:org.dita.html5:xsl/markup-d.xsl"/>
  25. <xsl:import href="plugin:org.dita.html5:xsl/xml-d.xsl"/>
  26. <xsl:import href="plugin:org.dita.html5:xsl/svg-d.xsl"/>
  27. <xsl:import href="plugin:org.dita.html5:xsl/hazard-d.xsl"/>
  28. <xsl:import href="plugin:org.dita.html5:xsl/nav.xsl"/>
  29. <xsl:import href="plugin:org.dita.html5:xsl/htmlflag.xsl"/>
  30. <dita:extension id="dita.xsl.html5"
  31. behavior="org.dita.dost.platform.ImportXSLAction"
  32. xmlns:dita="http://dita-ot.sourceforge.net"/>
  33. <!-- root rule -->
  34. <xsl:template match="/">
  35. <xsl:apply-templates/>
  36. </xsl:template>
  37. </xsl:stylesheet>