aboutsummaryrefslogtreecommitdiff
path: root/my_snippets/markdown.snippets
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2019-12-03 00:42:10 +0800
committerjdhao <jdhao@hotmail.com>2019-12-03 00:42:10 +0800
commit0e491bf4ddc8ab149b3d734c3648ff7a0f0aeb90 (patch)
treefbeaf0a4e20bb0c57b2f6a90c8d525394aa782ad /my_snippets/markdown.snippets
parent84e4ac3ee0c3bc33a90cd06c8888fa7d9b591a6e (diff)
Update Markdown snippets
Diffstat (limited to 'my_snippets/markdown.snippets')
-rw-r--r--my_snippets/markdown.snippets6
1 files changed, 5 insertions, 1 deletions
diff --git a/my_snippets/markdown.snippets b/my_snippets/markdown.snippets
index b3f9a34..94b408e 100644
--- a/my_snippets/markdown.snippets
+++ b/my_snippets/markdown.snippets
@@ -16,9 +16,13 @@ snippet more "HTML more tag"
<!--more-->
endsnippet
-snippet img "aligned image using HTML tag"
+snippet img "Aligned image using HTML tag"
<p align="center">
<img src="${1:URL}">
</p>
$0
endsnippet
+
+snippet link "Markdown links"
+[$1]($2)$0
+endsnippet