-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
20 lines (19 loc) · 882 Bytes
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<!-- The plugin.dtd file is located in the OXYGEN_INSATALL_DIR/plugins directory -->
<!DOCTYPE plugin SYSTEM "../plugin.dtd">
<plugin
id="com.oxygenxml.plugin.MathMLConvertor"
name="MathML"
description="Provides support for embedded MathML equations (where allowed by the document schema)."
version="${project.nosnapshot.version}"
vendor="Syncro Soft"
class="com.oxygenxml.sdksamples.mathml.MathMLPlugin">
<runtime>
<librariesFolder name="lib"/>
<library name="target/classes"/>
</runtime>
<extension type="AuthorStylesheet" href="web/mathml.css"/>
<extension type="WebappServlet" class="com.oxygenxml.sdksamples.mathml.MathmlServlet"/>
<extension type="WebappStaticResourcesFolder" path="web/" href="mml-static"/>
<extension type="WebappCSSResource" href="web/mml.css"/>
</plugin>