From e9ef5c3138354d950f7d461c7abef37d4278f428 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Mon, 19 Sep 2016 21:29:56 +0100 Subject: [PATCH] Add image link snippet for markdown --- UltiSnips/markdown.snippets | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/UltiSnips/markdown.snippets b/UltiSnips/markdown.snippets index 14afd94..18df102 100644 --- a/UltiSnips/markdown.snippets +++ b/UltiSnips/markdown.snippets @@ -3,3 +3,7 @@ snippet code "code section" $0 ``` endsnippet + +snippet ! "image link" +![${1:alt}](${2:src}${3: "${4:title}"}) +endsnippet