prez-concepts-chill/.vscode/tasks.json
Julien Fastré a2c388adf9
All checks were successful
Build an image to deploy website / build (push) Successful in 1m21s
Embed resources into presentation
2024-11-06 14:37:53 +01:00

30 lines
866 B
JSON

{
// 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",
"--embed-resources",
"--resource-path",
"./presentation/src/",
"-o",
"presentation/src/formation-signature.html",
"presentation/src/formation-signature.md"
],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}