2
0
mirror of https://github.com/webgefrickel/dotfiles synced 2024-11-15 12:12:58 +00:00
steffen-dotfiles/nvim/snippets/markdown.snippets
2020-05-23 13:19:24 +02:00

23 lines
278 B
Plaintext

snippet s
# ${1:Section Name}
${2}
endsnippet
snippet ss "Sub Section" b
## ${1:Section Name}
${2}
endsnippet
snippet sss
### ${1:Section Name}
${2}
endsnippet
snippet link
[${1:text}](${2:http://url.com})
endsnippet
snippet img
![${1:pic}](${2:path} ${3:title})
endsnippet