-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
49 lines (42 loc) · 2.08 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<plugin id="org.dita4publishers.html2">
<extension-point id="xsl.transtype-html2"/>
<feature extension="package.support.name" value="Eliot Kimber"/>
<feature extension="package.support.email" value="[email protected]"/>
<extension-point id="d4p.html2.xslt.param" name="HTML2 XSLT parameters"/>
<extension-point id="dita.conductor.xhtml.param" name="XHTML XSLT parameters"/>
<extension-point id="xsl.transtype-html2" hame="XSLT extensions"/>
<require plugin="org.dita4publishers.common.html"/>
<require plugin="org.dita4publishers.common.mapdriven"/>
<require plugin="org.dita-community.common.xslt"/>
<require plugin="org.dita4publishers.math-d.html"/>
<require plugin="org.dita4publishers.media-d.html"/>
<template file="build_transtype-html2_template.xml"/>
<template file="xsl/map2html2_template.xsl"/>
<feature extension="dita.conductor.transtype.check" value="html2" type="txt"/>
<feature extension="dita.conductor.target.relative" value="build.xml" type="file"/>
<!-- New way of specifying metadata with parameters contributed by the transtype:
https://github.com/dita-ot/dita-ot/issues/1757
-->
<transtype name="html2" extends="d4pCommons" desc="HTML2 (DITA 4 Publishers)">
<param name="html2.generate.dynamic.toc"
desc="Specifies whether or not to generate a dynamic TOC in the output." type="enum">
<val>true</val>
<val>false</val>
</param>
<param name="html2.generate.frameset"
desc="Specifies whether or not to generate an HTML frameset file for the map." type="enum">
<val>true</val>
<val default="true">false</val>
</param>
<param name="html2.generate.index"
desc="Specifies whether or not to generate a back-of-the-book index" type="enum">
<val>true</val>
<val default="true">false</val>
</param>
<param name="html2.generate.static.toc"
desc="Specifies whether or not to generate a static TOC in the output" type="enum">
<val>true</val>
<val default="true">false</val>
</param>
</transtype>
</plugin>