Initial commit

This commit is contained in:
Ungol 2025-07-09 14:16:59 +00:00
commit 4c1925d3c4
19 changed files with 8709 additions and 0 deletions

5
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,5 @@
{
"markdown.marp.themes": [
"./themes/catppuccin.css"
]
}

53
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,53 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Export Slides HTML",
"type": "shell",
"command": "npm",
"args": [
"run",
"build"
]
},
{
"label": "Preview Slides",
"type": "shell",
"command": "npm",
"args": [
"run",
"preview"
]
},
{
"label": "Export Slides PDF",
"type": "shell",
"command": "npm",
"args": [
"run",
"pdf"
]
},
{
"label": "Export Course HTML",
"type": "shell",
"command": "mdbook",
"args": [
"build"
]
},
{
"label": "Preview Course",
"type": "shell",
"command": "mdbook",
"args": [
"serve",
"--open"
]
},
],
"inputs": [
]
}