diff options
| author | jdhao <jdhao@hotmail.com> | 2019-08-06 00:16:45 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2019-08-06 00:16:45 +0800 |
| commit | b4255e204a7408e93928546fc8f830ddd9952a22 (patch) | |
| tree | 473770f89379f5baec55c4d5ea229c61f0412800 | |
| parent | dd4ef41fa41263f70851a0271a4489cfaab7a3f4 (diff) | |
update snippets
| -rw-r--r-- | my_snippets/markdown.snippets | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/my_snippets/markdown.snippets b/my_snippets/markdown.snippets index 8a2aa4f..b3f9a34 100644 --- a/my_snippets/markdown.snippets +++ b/my_snippets/markdown.snippets @@ -6,8 +6,8 @@ snippet head "Markdown header" b --- title: "$1" date: `!v strftime("%Y-%m-%d %H:%M:%S%z")` -tags: [$3] -categories: [$4] +tags: [$2] +categories: [$3] --- $0 endsnippet @@ -15,3 +15,10 @@ endsnippet snippet more "HTML more tag" <!--more--> endsnippet + +snippet img "aligned image using HTML tag" +<p align="center"> +<img src="${1:URL}"> +</p> +$0 +endsnippet |
