commit 2051c7dffa0c008c913f452bbe6a19bded3fde3b parent 235c41a9baa124e2528b1e600ca2b9dadeba64df Author: Alex Balgavy <a.balgavy@gmail.com> Date: Thu, 1 Aug 2019 13:56:57 +0200 vim: more markdown snippets Former-commit-id: b7de34418086a29df1931257da13c932f20b2279 Diffstat:
M | vim/ultisnips/markdown.snippets | | | 13 | ++++++++++++- |
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/vim/ultisnips/markdown.snippets b/vim/ultisnips/markdown.snippets @@ -1,4 +1,4 @@ -snippet post "New post" b +snippet draft "New draft" b --- layout: post title: "${1:Title}" @@ -7,3 +7,14 @@ author: zeroalpha $0 endsnippet + +snippet post "New draft" b +--- +layout: post +title: "${1:Title}" +author: zeroalpha +date: ${2:YYYY}-${3:MM}-${4:DD} +--- + +$0 +endsnippet