Initial commit
This commit is contained in:
commit
4c1925d3c4
19 changed files with 8709 additions and 0 deletions
5
.vscode/settings.json
vendored
Normal file
5
.vscode/settings.json
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"markdown.marp.themes": [
|
||||
"./themes/catppuccin.css"
|
||||
]
|
||||
}
|
||||
53
.vscode/tasks.json
vendored
Normal file
53
.vscode/tasks.json
vendored
Normal 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": [
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue