mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-31 04:57:57 +00:00
23 lines
262 B
Plaintext
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
|
||
|
|