diff options
author | Chris <[email protected]> | 2020-05-23 13:39:04 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2020-05-23 13:39:04 -0400 |
commit | 264df1df7f25e9fa4c6899897ce4953c2caf53df (patch) | |
tree | 187d8fc722ba1d472258b575990be9cfcce2d074 /snips/markdown.snippets | |
parent | 88f156841b8828e179f6183db5ed43da4b724127 (diff) |
snippets and emmet
Diffstat (limited to 'snips/markdown.snippets')
-rw-r--r-- | snips/markdown.snippets | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/snips/markdown.snippets b/snips/markdown.snippets new file mode 100644 index 00000000..cdfbe5cc --- /dev/null +++ b/snips/markdown.snippets @@ -0,0 +1,9 @@ +snippet meta(data)? "Markdown metadata front matter" br +--- +title: $1 +date: "`!v strftime("%Y-%m-%d")`" +image: "$2" +author: "$3" +tags: [$4] +--- +endsnippet |