Skip to content

Commit fa8778d

Browse files
committed
Merge pull request honza#350 from tinyladi/master
Pandoc, markdown: Inline code and code block snippets. Create pandoc.snippets
2 parents ec9a7a5 + 1d5adc3 commit fa8778d

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

Diff for: UltiSnips/markdown.snippets

+11
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,15 @@ snippet img "Image"
3939
![${1:pic alt}](${2:path}${3/.+/ "/}${3:opt title}${3/.+/"/})$0
4040
endsnippet
4141

42+
snippet ilc "Inline Code" i
43+
\`$1\`$0
44+
endsnippet
45+
46+
snippet cbl "Codeblock" b
47+
\`\`\`
48+
$1
49+
\`\`\`
50+
$0
51+
endsnippet
52+
4253
# vim:ft=snippets:

Diff for: UltiSnips/pandoc.snippets

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
priority -49
2+
3+
extends markdown

0 commit comments

Comments
 (0)