virtuallypotato/.vscode/clarity.code-snippets

21 lines
370 B
Text
Raw Normal View History

2022-03-07 03:39:07 +00:00
{
"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"
},
}