VSCode snipets
parent
9de3cb0e2a
commit
8e0bb2cd80
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"simple site": {
|
||||||
|
"scope": "markdown",
|
||||||
|
"prefix": "+++",
|
||||||
|
"body": "+++\ntitle = \"${TM_FILENAME/.md//}$1\" \n\n[extra]\nheading = \"$2\"\n+++",
|
||||||
|
"description": "A basic snippet for zola md header"
|
||||||
|
},
|
||||||
|
"site in nav": {
|
||||||
|
"scope": "markdown",
|
||||||
|
"prefix": "+++",
|
||||||
|
"body": "+++\ntitle = \"${TM_FILENAME/.md//}\" \n\n[extra]\nheading = \"$2\"\nnav_right = true\nicon = \"$3\"\ncolor = \"#8FBCBB\"\n+++",
|
||||||
|
"description": "A snippet for zola md header with icon and color"
|
||||||
|
},
|
||||||
|
"site in main menu": {
|
||||||
|
"scope": "markdown",
|
||||||
|
"prefix": "+++",
|
||||||
|
"body": "+++\ntitle = \"${TM_FILENAME/.md//}\" \n\n[extra]\nheading = \"$2\"\nnav_right = true\nnav_title_left = \"$3\"\nnav_title_right = \"$4\"\nicon = \"$5\"\ncolor = \"#8FBCBB\"\n+++",
|
||||||
|
"description": "A snippet for zola md header with main menu columns"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
// Use IntelliSense to learn about possible attributes.
|
||||||
|
// Hover to view descriptions of existing attributes.
|
||||||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"type": "pwa-chrome",
|
||||||
|
"request": "launch",
|
||||||
|
"name": "Launch Chrome against localhost",
|
||||||
|
"url": "http://127.0.0.1:1111",
|
||||||
|
"webRoot": "${workspaceFolder}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue