aboutsummaryrefslogtreecommitdiff
path: root/my_snippets
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2019-12-19 11:24:48 +0800
committerGitHub <noreply@github.com>2019-12-19 11:24:48 +0800
commit54e03e5bfc4f0a2f6c72aed5b89f7bf59bb6af43 (patch)
tree8ae7ef7951504dfdfd85c8844600600ef12c0e9d /my_snippets
parenta5be915cedcbbee2784dfce12522837f052a4d8d (diff)
Update markdown.snippets
Diffstat (limited to 'my_snippets')
-rw-r--r--my_snippets/markdown.snippets2
1 files changed, 1 insertions, 1 deletions
diff --git a/my_snippets/markdown.snippets b/my_snippets/markdown.snippets
index 53141a1..3b14ea4 100644
--- a/my_snippets/markdown.snippets
+++ b/my_snippets/markdown.snippets
@@ -6,7 +6,7 @@ def gen_header(snip):
# erase current line
snip.buffer[snip.line] = ""
line_content = "#"*level + " ${1:Section Name} " + "#"*level
- line_content += '\n$0'
+ line_content += '\n\n$0'
snip.expand_anon(line_content)
endglobal