forked from oxygenxml/oxygen-batch-converter-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon.xml
71 lines (63 loc) · 3.31 KB
/
addon.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!-- This is used to install the plugin as an add-on:
https://www.oxygenxml.com/doc/versions/18.1/ug-editor/topics/packing-and-deploying-addons.html#packing-and-deploying-addons
-->
<xt:extensions xmlns:xt="http://www.oxygenxml.com/ns/extension"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.oxygenxml.com/ns/extension http://www.oxygenxml.com/ns/extension/extensions.xsd">
<xt:extension xmlns:xt="http://www.oxygenxml.com/ns/extension"
id="com.oxygenxml.resources.batch.converter.plugin">
<xt:location href="https://github.com/oxygenxml/oxygen-resources-convertor/releases/download/${project.version}/${project.build.finalName}-plugin.jar"/>
<xt:version>${project.version}</xt:version>
<xt:oxy_version>19.1+</xt:oxy_version>
<xt:type>plugin</xt:type>
<xt:author>Syncro Soft</xt:author>
<xt:name>Batch Converter</xt:name>
<xt:description><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Oxygen resources converter</title>
</head>
<body>
<div>
<p>This add-on contributes actions in the Tools menu and contextual menu to enable batch conversion between various formats:
</p>
<ul>
<li>HTML to XHTML/DITA/DocBook</li>
<li>Markdown to XHTML/DITA/DocBook</li>
<li>XML to JSON</li>
<li>JSON to XML</li>
<li>Excel to DITA</li>
<li>Word to XHTML/DITA/DocBook - experimental</li>
</ul>
<p>For more details see <a
href="https://github.com/oxygenxml/oxygen-resources-convertor"
>https://github.com/oxygenxml/oxygen-resources-convertor</a>
</p>
</div>
</body>
</html>
</xt:description>
<xt:license><![CDATA[
Copyright 2018 Syncro Soft SRL
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
The Plugin may include certain of the following third party software components.
The copyright notices, disclaimers and license terms applicable to such third party software components are listed below:
markdown-1.3.0.jar
Site: https://github.com/jelovirt/dita-ot-markdown/
License: Apache License 2.0 ( http://www.apache.org/licenses/LICENSE-2.0)
mammoth-1.4.0.jar
Site: https://github.com/mwilliamson/java-mammoth
License: BSD 2-Clause Simplified License ( https://raw.githubusercontent.com/mwilliamson/java-mammoth/master/LICENSE)
jtidy-1.0.jar
Site: https://github.com/jtidy/jtidy
License: Java HTML Tidy - JTidy License ( https://raw.githubusercontent.com/jtidy/jtidy/master/LICENSE.txt)
]]></xt:license>
</xt:extension>
</xt:extensions>