-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
25 lines (21 loc) · 1.06 KB
/
plugin.xml
File metadata and controls
25 lines (21 loc) · 1.06 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<!-- ===================================== -->
<!-- Preferences -->
<!-- ===================================== -->
<extension point="org.eclipse.core.runtime.preferences">
<initializer class="de.sebthom.eclipse.previewer.d2.prefs.PluginPreferences$Initializer" />
</extension>
<extension point="org.eclipse.ui.preferencePages">
<page id="de.sebthom.eclipse.previewer.d2.prefs.PluginPreferencePage"
name="%PreferencePageName"
class="de.sebthom.eclipse.previewer.d2.prefs.PluginPreferencePage" category="de.sebthom.eclipse.previewer.prefs.PluginPreferencePage" />
</extension>
<!-- ===================================== -->
<!-- Renderers -->
<!-- ===================================== -->
<extension point="de.sebthom.eclipse.previewer.renderers">
<htmlPreviewRenderer class="de.sebthom.eclipse.previewer.d2.D2HtmlPreviewRenderer" file-extensions="d2" />
</extension>
</plugin>