Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.wikitext.markdown.core/plugin.xml')
-rw-r--r--org.eclipse.mylyn.wikitext.markdown.core/plugin.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.wikitext.markdown.core/plugin.xml b/org.eclipse.mylyn.wikitext.markdown.core/plugin.xml
new file mode 100644
index 000000000..303771a8e
--- /dev/null
+++ b/org.eclipse.mylyn.wikitext.markdown.core/plugin.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+<!--
+ Copyright (c) 2012 Stefan Seelmann 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:
+ Stefan Seelmann - initial API and implementation
+ -->
+<plugin>
+ <extension point="org.eclipse.mylyn.wikitext.core.markupLanguage">
+ <language class="org.eclipse.mylyn.wikitext.markdown.core.MarkdownLanguage"
+ name="Markdown" fileExtensions="markdown,md,mdtext">
+ </language>
+ </extension>
+
+ <extension point="org.eclipse.core.contenttype.contentTypes">
+ <content-type id="org.eclipse.mylyn.wikitext.markdown" base-type="org.eclipse.mylyn.wikitext"
+ file-extensions="markdown,md,mdtext" name="%content-type.name" priority="normal">
+ </content-type>
+ </extension>
+
+ <extension point="org.eclipse.team.core.fileTypes">
+ <fileTypes extension="markdown" type="text"/>
+ </extension>
+</plugin>

Back to the top