plugin.xml 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. This file is part of the DITA Open Toolkit project.
  4. Copyright 2015 Jarno Elovirta
  5. See the accompanying LICENSE file for applicable license.
  6. -->
  7. <plugin id="org.dita.html5" version="3.3.3">
  8. <!-- extension points -->
  9. <extension-point id="dita.xsl.html5" name="HTML5 XSLT import"/>
  10. <extension-point id="dita.conductor.html5.param" name="HTML5 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="HTML5 TOC XSLT import"/>
  13. <extension-point id="dita.xsl.html5.cover" name="HTML5 Cover XSLT import"/>
  14. <!-- extensions -->
  15. <transtype name="html5" desc="HTML5">
  16. <param name="args.artlbl" desc="Specifies whether to generate a label for each image; the label will contain the image file name." type="enum">
  17. <val>yes</val>
  18. <val default="true">no</val>
  19. </param>
  20. <param name="args.copycss" desc="Specifies whether to copy the custom .css file to the output directory." type="enum">
  21. <val>yes</val>
  22. <val default="true">no</val>
  23. </param>
  24. <param name="args.css" desc="Specifies the name of a custom .css file." type="string"/>
  25. <param name="args.csspath" desc="Specifies the location of a copied .css file relative to the output directory." type="string"/>
  26. <param name="args.cssroot" desc="Specifies the directory that contains the custom .css file." type="string"/>
  27. <param name="args.dita.locale" desc="Specifies the language locale file to use for sorting index entries." type="string"/>
  28. <param name="args.ftr" desc="Specifies an XML file that contains content for a running footer." type="file"/>
  29. <param name="args.gen.default.meta" desc="Specifies whether to generate extra metadata that targets parental control scanners, meta elements with name=&#34;security&#34; and name=&#34;Robots&#34;." type="enum">
  30. <val>yes</val>
  31. <val default="true">no</val>
  32. </param>
  33. <param name="args.hdf" desc="Specifies an XML file that contains content to be placed in the document head." type="file"/>
  34. <param name="args.hdr" desc="Specifies an XML file that contains content for a running header." type="file"/>
  35. <param name="args.hide.parent.link" desc="Specifies whether to hide links to parent topics in the HTML5 output." type="enum">
  36. <val>yes</val>
  37. <val default="true">no</val>
  38. </param>
  39. <param name="args.html5.classattr" desc="Specifies whether to include the DITA class ancestry inside the HTML5 elements." type="enum">
  40. <val default="true">yes</val>
  41. <val>no</val>
  42. </param>
  43. <param name="args.html5.contenttarget" desc="Specifies the value of the @target attribute on the &lt;base&gt; element in the TOC file." type="string">
  44. <val default="true">contentwin</val>
  45. </param>
  46. <param name="args.html5.toc" desc="Specifies the base name of the TOC file." type="string">
  47. <val default="true">index</val>
  48. </param>
  49. <param name="args.html5.toc.class" desc="Specifies the value of the @class attribute on the &lt;body&gt; element in the TOC file." type="string"/>
  50. <param name="args.html5.toc.xsl" desc="Specifies a custom XSL file to be used for TOC generation." type="file"/>
  51. <param name="args.indexshow" desc="Specifies whether the content of &lt;indexterm&gt; elements are rendered in the output." type="enum">
  52. <val>yes</val>
  53. <val default="true">no</val>
  54. </param>
  55. <param name="args.outext" desc="Specifies the file extension for HTML5 output." type="string">
  56. <val default="true">html</val>
  57. </param>
  58. <param name="args.xsl" desc="Specifies a custom XSL file to be used instead of the default XSL transformation." type="file"/>
  59. <param name="nav-toc" type="enum" desc="Specifies whether to generate a navigation TOC in topic pages.">
  60. <val default="true" desc="No TOC">none</val>
  61. <val desc="Partial TOC that shows the current topic">partial</val>
  62. <val desc="Full TOC">full</val>
  63. </param>
  64. </transtype>
  65. <feature extension="ant.import" file="build_dita2html5.xml"/>
  66. <feature extension="dita.conductor.html5.param" file="params.xml"/>
  67. <!--feature extension="dita.xsl.messages" file="resource/messages.xml"/-->
  68. <template file="build_dita2html5_template.xml"/>
  69. <template file="xsl/dita2html5Impl_template.xsl"/>
  70. <template file="xsl/map2html5-coverImpl_template.xsl"/>
  71. </plugin>