aboutsummaryrefslogtreecommitdiff
path: root/my_snippets/markdown.snippets
diff options
context:
space:
mode:
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