-
Notifications
You must be signed in to change notification settings - Fork 643
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'st3-develop' into st4-develop
- Loading branch information
Showing
6 changed files
with
50 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# MarkdownEditing 3.1.10 Changelog | ||
|
||
Your _MarkdownEditing_ plugin is updated. Enjoy new version. For any type of | ||
feedback you can use [GitHub issues][issues]. | ||
|
||
## Bug Fixes | ||
|
||
* Fix MacOs fold/unfold section key bindings (#724) | ||
|
||
## New Features | ||
|
||
* Add snippets for GitHub admonitions | ||
- ghnote - Note | ||
- ghwarn - Warning | ||
|
||
## Changes | ||
|
||
[issues]: https://github.com/SublimeText-Markdown/MarkdownEditing/issues |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<snippet> | ||
<content><![CDATA[> **Note** | ||
> | ||
> ${0:enter text} | ||
]]></content> | ||
<tabTrigger>ghnote</tabTrigger> | ||
<scope>text.html.markdown - meta.frontmatter - meta.disable-markdown - meta.code-fence - markup.raw</scope> | ||
<description>Markdown Admonition</description> | ||
</snippet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<snippet> | ||
<content><![CDATA[> **Warning** | ||
> | ||
> ${0:enter text} | ||
]]></content> | ||
<tabTrigger>ghwarn</tabTrigger> | ||
<scope>text.html.markdown - meta.frontmatter - meta.disable-markdown - meta.code-fence - markup.raw</scope> | ||
<description>Markdown Admonition</description> | ||
</snippet> |