summary refs log tree commit diff
path: root/.vim/UltiSnips/markdown.snippets
blob: 641e77cd40a4a052a083c4c1bc8dfc8f7e050e0e (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
40
41
42
43
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

snippet furigana
$\stackrel{\text{$2}}{\text{$1}}$$0
endsnippet