1
0
Fork 0
neovim-config/mysnippets/markdown.snippets

21 lines
342 B
Text
Raw Normal View History

2021-06-13 16:20:02 -04:00
snippet fig "Hugo Figure"
{{< figure link="img/$1.jpg" thumb="_small"
caption="$2" >}}
$0
endsnippet
snippet gal "Hugo Gallery"
{{< gallery hover-effect="none" caption-effect="none" >}}
{{< figure link="img/$1.jpg" thumb="_small"
caption="$2" >}}
$3
{{< /gallery >}}
$0
endsnippet
snippet kbd "Keyboard"
{{<kbd ${1:<key>}>}}$0
endsnippet