clarity snippets for VS Code

This commit is contained in:
John Bowdre 2022-03-06 21:39:07 -06:00
parent 30b34cf0b3
commit 5ce71523aa

20
.vscode/clarity.code-snippets vendored Normal file
View 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"
},
}