add snippet file (#22711)

This commit is contained in:
Arthur 2025-05-28 12:31:16 +02:00 committed by GitHub
parent 5ad9cd6185
commit a746d0b1f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 44 additions and 1 deletions

3
.gitignore vendored
View File

@ -1,6 +1,7 @@
**/.DS_Store
**/desktop.ini
.vscode
.vscode/settings.json
.vscode/tasks.json
node_modules
.hugo_build.lock
resources

42
.vscode/docker.code-snippets vendored Normal file
View File

@ -0,0 +1,42 @@
{
"Insert Hugo Note Admonition": {
"prefix": ["admonition", "note"],
"body": ["> [!NOTE]", "> $1"],
"description": "Insert a Hugo note admonition",
},
"Insert Hugo Important Admonition": {
"prefix": ["admonition", "important"],
"body": ["> [!IMPORTANT]", "> $1"],
"description": "Insert a Hugo important admonition",
},
"Insert Hugo Warning Admonition": {
"prefix": ["admonition", "warning"],
"body": ["> [!WARNING]", "> $1"],
"description": "Insert a Hugo warning admonition",
},
"Insert Hugo Tip Admonition": {
"prefix": ["admonition", "tip"],
"body": ["> [!TIP]", "> $1"],
"description": "Insert a Hugo tip admonition",
},
"Insert Hugo Tabs": {
"prefix": ["admonition", "tabs"],
"body": [
"",
"{{< tabs >}}",
"{{< tab name=\"$1\">}}",
"",
"$2",
"",
"{{< /tab >}}",
"{{< tab name=\"$3\">}}",
"",
"$4",
"",
"{{< /tab >}}",
"{{</tabs >}}",
"",
],
"description": "Insert a Hugo tabs block with two tabs and snippet stops for names and content",
},
}