Dotfiles/site-modules/core/files/vim/UltiSnips/markdown.snippets
Ade Attwood 80239af169 refactor(core): start to make dotfiles public
This is the first commit that brings the privet dotfiles to a public
reop previously this was all one puppet module. Now this has been split
out so I can put all of the private files in a private puppet module
2020-09-20 06:22:17 +01:00

42 lines
681 B
Text

snippet link "Link to something"
[${1:${VISUAL:Text}}](${3:http://${2:www.url.com}})$0
endsnippet
snippet img "Image"
![${1:pic alt}](${2:path}${3/.+/ "/}${3:opt title}${3/.+/"/})$0
endsnippet
snippet icode "Inline Code" i
\`$1\`$0
endsnippet
snippet code "Codeblock" b
\`\`\`${1:lang}
$2
\`\`\`
$0
endsnippet
snippet table "A base table layout" b
|${0} | | | | |
|---|---|---|---|---|
| | | | | |
endsnippet
snippet frontmatter "A basic frontmatter block" b
---
title: ${1:Title}
comments: false
date: ${2:date}
tags:
- ${3:tags}
categories:
- ${4:categories}
---
${0}
endsnippet
snippet more "A more comment tag for blogs" b
<!-- more -->
endsnippet