From a34551bdd9af52018a92279a40f6b9385c1109f9 Mon Sep 17 00:00:00 2001 From: tinyladi Date: Mon, 28 Apr 2014 12:48:59 +0200 Subject: [PATCH] add codeblock and inline code snippets to markdown.snippets --- UltiSnips/markdown.snippets | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/UltiSnips/markdown.snippets b/UltiSnips/markdown.snippets index fa708ab..046f6b7 100644 --- a/UltiSnips/markdown.snippets +++ b/UltiSnips/markdown.snippets @@ -39,4 +39,15 @@ snippet img "Image" ![${1:pic alt}](${2:path}${3/.+/ "/}${3:opt title}${3/.+/"/})$0 endsnippet +snippet ilc "Inline Code" +\`$1\`$0 +endsnippet + +snippet cbl "Codeblock" b +\`\`\` +$1 +\`\`\` +$0 +endsnippet + # vim:ft=snippets: