dotfiles/nvim/ultisnips/markdown.snippets
Gabriel Arazas 24b3b106ce Replace UltiSnips with LuaSnip
The UltiSnips snippets are still there, I just have to port them slowly
over time.
2022-04-24 21:19:53 +08:00

23 lines
262 B
Plaintext

# 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