plugin.xml 1.4 KB

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. This file is part of the DITA Open Toolkit project.
  4. See the accompanying license.txt file for applicable licenses.
  5. -->
  6. <plugin id="org.dita.html5">
  7. <require plugin="org.dita.xhtml"/>
  8. <!-- extension points -->
  9. <extension-point id="dita.xsl.html5" name="HTML/XHTML XSLT import"/>
  10. <extension-point id="dita.conductor.html5.param" name="XHTML XSLT parameters"/>
  11. <extension-point id="dita.conductor.html5.toc.param" name="HTML/XSLT XSLT parameter"/>
  12. <extension-point id="dita.xsl.html5.toc" name="HTML/XHTML TOC XSLT import"/>
  13. <extension-point id="dita.xsl.html5.cover" name="HTML/XHTML Cover XSLT import"/>
  14. <!-- extensions -->
  15. <transtype name="html5" extends="common-html" desc="HTML5">
  16. <param name="nav-toc" type="enum" desc="Specifies whether to generate a navigation TOC in topic pages.">
  17. <val default="true" desc="No TOC">none</val>
  18. <val desc="Partial TOC that shows the current topic">partial</val>
  19. <val desc="Full TOC">full</val>
  20. </param>
  21. </transtype>
  22. <feature extension="dita.conductor.target.relative" file="conductor.xml"/>
  23. <feature extension="dita.conductor.html5.param" file="params.xml"/>
  24. <template file="build_dita2html5_template.xml"/>
  25. <template file="xsl/dita2html5_template.xsl"/>
  26. <template file="xsl/map2html5toc_template.xsl"/>
  27. <template file="xsl/map2html5-cover_template.xsl"/>
  28. </plugin>