mirror of
https://github.com/jbowdre/virtuallypotato.git
synced 2024-11-22 06:52:18 +00:00
clarity snippets for VS Code
This commit is contained in:
parent
30b34cf0b3
commit
5ce71523aa
1 changed files with 20 additions and 0 deletions
20
.vscode/clarity.code-snippets
vendored
Normal file
20
.vscode/clarity.code-snippets
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"Add Hugo Notice": {
|
||||||
|
"scope": "markdown",
|
||||||
|
"prefix": "note",
|
||||||
|
"body": [
|
||||||
|
"{{% notice ${1|note,info,tip,warning|} ${2:title} %}}",
|
||||||
|
"$3",
|
||||||
|
"{{% /notice %}}"
|
||||||
|
],
|
||||||
|
"description": "create note"
|
||||||
|
},
|
||||||
|
"Add Hugo Reference": {
|
||||||
|
"scope": "markdown",
|
||||||
|
"prefix": "ref",
|
||||||
|
"body": [
|
||||||
|
"{{< ref \"$1\" >}}"
|
||||||
|
],
|
||||||
|
"description": "create local ref link"
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in a new issue