dita2html-base.xsl 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="UTF-8"?><!--
  2. This file is part of the DITA Open Toolkit project.
  3. Copyright 2004, 2005 IBM Corporation
  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. <!-- idit2htm.xsl main stylesheet
  7. | Convert DITA topic to HTML; "single topic to single web page"-level view
  8. |
  9. -->
  10. <!-- stylesheet imports -->
  11. <!-- the main dita to xhtml converter -->
  12. <xsl:import href="plugin:org.dita.xhtml:xsl/xslhtml/dita2htmlImpl.xsl"/>
  13. <!-- the dita to xhtml converter for concept documents -->
  14. <xsl:import href="plugin:org.dita.xhtml:xsl/xslhtml/conceptdisplay.xsl"/>
  15. <!-- the dita to xhtml converter for glossentry documents -->
  16. <xsl:import href="plugin:org.dita.xhtml:xsl/xslhtml/glossdisplay.xsl"/>
  17. <!-- the dita to xhtml converter for task documents -->
  18. <xsl:import href="plugin:org.dita.xhtml:xsl/xslhtml/taskdisplay.xsl"/>
  19. <!-- the dita to xhtml converter for reference documents -->
  20. <xsl:import href="plugin:org.dita.xhtml:xsl/xslhtml/refdisplay.xsl"/>
  21. <!-- user technologies domain -->
  22. <xsl:import href="plugin:org.dita.xhtml:xsl/xslhtml/ut-d.xsl"/>
  23. <!-- software domain -->
  24. <xsl:import href="plugin:org.dita.xhtml:xsl/xslhtml/sw-d.xsl"/>
  25. <!-- programming domain -->
  26. <xsl:import href="plugin:org.dita.xhtml:xsl/xslhtml/pr-d.xsl"/>
  27. <!-- ui domain -->
  28. <xsl:import href="plugin:org.dita.xhtml:xsl/xslhtml/ui-d.xsl"/>
  29. <!-- highlighting domain -->
  30. <xsl:import href="plugin:org.dita.xhtml:xsl/xslhtml/hi-d.xsl"/>
  31. <!-- abbreviated-form domain -->
  32. <xsl:import href="plugin:org.dita.xhtml:xsl/xslhtml/abbrev-d.xsl"/>
  33. <xsl:import href="plugin:org.dita.xhtml:xsl/xslhtml/markup-d.xsl"/>
  34. <xsl:import href="plugin:org.dita.xhtml:xsl/xslhtml/xml-d.xsl"/>
  35. <xsl:import href="plugin:org.dita.xhtml:xsl/xslhtml/svg-d.xsl"/>
  36. <xsl:import href="plugin:org.dita.xhtml:xsl/xslhtml/hazard-d.xsl"/>
  37. <!-- Integrate support for flagging with dita-ot pseudo-domain -->
  38. <xsl:import href="plugin:org.dita.xhtml:xsl/xslhtml/htmlflag.xsl"/>
  39. <!-- the dita to xhtml converter for element reference documents - not used now -->
  40. <!--<xsl:import href="elementrefdisp.xsl"/>-->
  41. <!-- root rule -->
  42. <xsl:template xmlns:dita="http://dita-ot.sourceforge.net" match="/">
  43. <xsl:apply-templates/>
  44. </xsl:template>
  45. </xsl:stylesheet>