dotfiles/nvim/own-snippets/markdown.snippets

23 lines
262 B
Plaintext
Raw Normal View History

2020-11-02 14:46:43 +00:00
# Text formatting
snippet bf "Boldface" iw
**$1**
endsnippet
snippet tt "Teletype (or monospace text)" iw
\`$1\`
endsnippet
# Content formatting
snippet src "Source code listing" bi
```$1
$2
```
$0
endsnippet
snippet link "Quick link" i
[$1]($2)
endsnippet