2023-03-27 14:09:44 +02:00

42 lines
1.7 KiB
XML

<!-- Copyright 2000-2023 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
<idea-plugin>
<!-- Unique id for this plugin. Must stay constant for the life of the plugin. -->
<id>org.intellij.sdk.liveTemplates</id>
<!-- Text to display as name on Settings | Plugin page -->
<name>SDK: Live Templates Sample</name>
<!-- Product and plugin compatibility requirements -->
<depends>com.intellij.modules.lang</depends>
<!-- Text to display as description on Settings | Plugin page -->
<description>
<![CDATA[
Demonstrates implementing live templates for Markdown language.<br> Adds an entry to the
<b>Settings | Editor | Live Templates</b> dialog.
]]>
</description>
<change-notes>
<![CDATA[
<ul>
<li><b>2.1.0</b> Use com.intellij.defaultLiveTemplates, add custom macro.</li>
<li><b>2.0.0</b> Convert to Gradle-based plugin, change plugin ID</li>
<li><b>1.0.0</b> Release 2018.3 and earlier.</li>
</ul>
]]>
</change-notes>
<!-- Text to display as company information on Settings | Plugin page -->
<vendor url="https://plugins.jetbrains.com">IntelliJ Platform SDK</vendor>
<extensions defaultExtensionNs="com.intellij">
<defaultLiveTemplates file="/liveTemplates/Markdown.xml"/>
<liveTemplateContext implementation="org.intellij.sdk.liveTemplates.MarkdownContext"/>
<liveTemplateMacro implementation="org.intellij.sdk.liveTemplates.TitleCaseMacro"/>
</extensions>
</idea-plugin>