forked from lhcb/gitbook-plugin-panels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
markdown.snippets
41 lines (33 loc) · 914 Bytes
/
markdown.snippets
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
# Add these snippets to your markdown UtliSnips for VIM
snippet panel "Add any panel"
{% ${2:panel} "${1:title}" %}
${VISUAL}$0
{% end$1 %}
snippet prereq "Add a prereq panel"
{% prereq "${1:Prerequisites}" %}
${VISUAL}$0
{% endprereq %}
snippet callout "Add a callout panel"
{% callout "${1:title}" %}
${VISUAL}$0
{% endcallout %}
snippet challenge "Add a challenge panel"
{% challenge "${1:Challenge}" %}
${VISUAL}$0
{% endchallenge %}
snippet solution "Add a solution panel"
{% solution "${1:Solution}" %}
${VISUAL}$0
{% endsolution %}
snippet objectives "Add a objectives panel"
{% objectives "${1:Learning Objectives}" %}
${VISUAL}$0
{% endobjectives %}
snippet keypoints "Add a keypoints panel"
{% keypoints "${1:Further reading}" %}
${VISUAL}$0
{% endkeypoints %}
snippet discussion "Add a discussion panel"
{% discussion "${1:Discussion}" %}
${VISUAL}$0
{% enddiscussion %}