| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- This file is part of the DITA Open Toolkit project.
- Copyright 2016 Jarno Elovirta
- See the accompanying LICENSE file for applicable license.
- -->
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- version="2.0">
- <xsl:import href="plugin:org.dita.base:xsl/common/output-message.xsl"/>
- <xsl:import href="plugin:org.dita.base:xsl/common/dita-utilities.xsl"/>
- <xsl:import href="plugin:org.dita.base:xsl/common/related-links.xsl"/>
- <xsl:import href="plugin:org.dita.base:xsl/common/dita-textonly.xsl"/>
-
- <xsl:import href="plugin:org.dita.html5:xsl/topic.xsl"/>
- <xsl:import href="plugin:org.dita.html5:xsl/concept.xsl"/>
- <xsl:import href="plugin:org.dita.html5:xsl/glossdisplay.xsl"/>
- <xsl:import href="plugin:org.dita.html5:xsl/task.xsl"/>
- <xsl:import href="plugin:org.dita.html5:xsl/reference.xsl"/>
- <xsl:import href="plugin:org.dita.html5:xsl/ut-d.xsl"/>
- <xsl:import href="plugin:org.dita.html5:xsl/sw-d.xsl"/>
- <xsl:import href="plugin:org.dita.html5:xsl/pr-d.xsl"/>
- <xsl:import href="plugin:org.dita.html5:xsl/ui-d.xsl"/>
- <xsl:import href="plugin:org.dita.html5:xsl/hi-d.xsl"/>
- <xsl:import href="plugin:org.dita.html5:xsl/abbrev-d.xsl"/>
- <xsl:import href="plugin:org.dita.html5:xsl/markup-d.xsl"/>
- <xsl:import href="plugin:org.dita.html5:xsl/xml-d.xsl"/>
- <xsl:import href="plugin:org.dita.html5:xsl/svg-d.xsl"/>
- <xsl:import href="plugin:org.dita.html5:xsl/hazard-d.xsl"/>
-
- <xsl:import href="plugin:org.dita.html5:xsl/nav.xsl"/>
-
- <xsl:import href="plugin:org.dita.html5:xsl/htmlflag.xsl"/>
-
- <dita:extension id="dita.xsl.html5"
- behavior="org.dita.dost.platform.ImportXSLAction"
- xmlns:dita="http://dita-ot.sourceforge.net"/>
- <!-- root rule -->
- <xsl:template match="/">
- <xsl:apply-templates/>
- </xsl:template>
-
- </xsl:stylesheet>
|