summary refs log tree commit diff
path: root/.vim/UltiSnips/markdown.snippets
blob: 34b1c4037844f1e5c959e5779e3bb2f533b49117 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
snippet new "new page" b
---
date: "`now`"
title: "$0"
---
endsnippet

snippet link "Link"
[$1](${2:${VISUAL}})
endsnippet

snippet code "Code block" b
\`\`\`$1
${2:${VISUAL}}
\`\`\`
$0
endsnippet

snippet detail "Detail block" b
<details>
<summary>$1<summary>

${2:${VISUAL}}

</details>
$0
endsnippet

snippet todo "todo: generic"
* [ ] $0
endsnippet

snippet todoKV "todo: krankenversicherung"
* [ ] $0
				- [ ] überweisung
				- [ ] beleg einreichen
				- [ ] filings
				- [ ] refund
endsnippet