prez-concepts-chill/.vscode/tasks.json

29 lines
829 B
JSON
Raw Permalink Normal View History

2024-11-05 20:45:21 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build formation signature",
"type": "shell",
"command": "pandoc",
"args": [
"--from",
"markdown+emoji",
"--to",
"revealjs",
"--standalone",
2024-11-06 13:37:53 +00:00
"--resource-path",
"./presentation/src/",
2024-11-05 20:45:21 +00:00
"-o",
"presentation/src/formation-signature.html",
"presentation/src/formation-signature.md"
],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}