Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.wikitext.creole.core/plugin.xml')
-rw-r--r--org.eclipse.mylyn.wikitext.creole.core/plugin.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.wikitext.creole.core/plugin.xml b/org.eclipse.mylyn.wikitext.creole.core/plugin.xml
new file mode 100644
index 000000000..0c217621c
--- /dev/null
+++ b/org.eclipse.mylyn.wikitext.creole.core/plugin.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+<!--
+ Copyright (c) 2011 Igor Malinin and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+
+ Contributors:
+ Igor Malinin - initial API and implementation
+ -->
+<plugin>
+ <extension point="org.eclipse.mylyn.wikitext.core.markupLanguage">
+ <language class="org.eclipse.mylyn.wikitext.creole.core.CreoleLanguage"
+ name="Creole" fileExtensions="creole">
+ </language>
+ </extension>
+
+ <extension point="org.eclipse.core.contenttype.contentTypes">
+ <content-type id="org.eclipse.mylyn.wikitext.creole" base-type="org.eclipse.mylyn.wikitext"
+ file-extensions="creole" name="%content-type.name" priority="normal">
+ </content-type>
+ </extension>
+
+ <extension point="org.eclipse.team.core.fileTypes">
+ <fileTypes extension="creole" type="text"/>
+ </extension>
+
+ <extension point="org.eclipse.mylyn.wikitext.core.markupValidationRule">
+ <rule class="org.eclipse.mylyn.internal.wikitext.creole.core.validation.CreoleReferenceValidationRule"
+ markupLanguage="Creole"/>
+ </extension>
+
+</plugin>

Back to the top