mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
24 lines
788 B
XML
24 lines
788 B
XML
<idea-plugin>
|
|
<id>org.intellij.sdk.liveTemplates</id>
|
|
<name>Live Templates</name>
|
|
<version>1.0</version>
|
|
<vendor>JetBrains</vendor>
|
|
|
|
<!-- Text to display as description on Preferences/Settings | Plugin page -->
|
|
<description>
|
|
<![CDATA[
|
|
Demonstrates implementing live templates for Markdown language.<br> Adds an entry to the <b>Preferences | Editor | Live Templates</b> dialog.
|
|
]]>
|
|
</description>
|
|
|
|
<idea-version since-build="141.0"/>
|
|
|
|
<!-- Product and plugin compatibility requirements -->
|
|
<depends>com.intellij.modules.lang</depends>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<defaultLiveTemplatesProvider implementation="MarkdownTemplateProvider"/>
|
|
<liveTemplateContext implementation="MarkdownContext"/>
|
|
</extensions>
|
|
|
|
</idea-plugin> |