dita2html5Impl.xsl 1.7 KB

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