mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
Bumps org.jetbrains.intellij from 1.5.0 to 1.5.1. --- updated-dependencies: - dependency-name: org.jetbrains.intellij dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Live Templates Sample 
Reference: Live Templates in IntelliJ SDK Docs
Quickstart
Live Templates Sample Project implements two example live templates for the Markdown language:
- New link reference - by typing the
{<TAB>
, the following template will be inserted:[$TEXT$]($LINK$)$END$
- Convert to title case - retrieves the text from the macro or selection, if available.
Extension Points
Name | Implementation | Extension Point Class |
---|---|---|
com.intellij.defaultLiveTemplates |
Markdown | n/a |
com.intellij.liveTemplateContext |
MarkdownContext | TemplateContextType |
com.intellij.liveTemplateMacro |
TitleCaseMacro | MacroBase |
Reference: Plugin Extension Points in IntelliJ SDK Docs