27 lines
755 B
JSON
27 lines
755 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",
|
||
|
"-o",
|
||
|
"presentation/src/formation-signature.html",
|
||
|
"presentation/src/formation-signature.md"
|
||
|
],
|
||
|
"problemMatcher": [],
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|