Files
Specification/.vscode/tasks.json
T
2026-08-02 22:29:30 +02:00

25 lines
669 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 AsciiDoc PDF",
"type": "shell",
"command": "docker",
"args": [
"run",
"--rm", // autoremove after exit
"-v",
"${workspaceFolder}:/documents",
"-w",
"/documents",
"asciidoctor/docker-asciidoctor",
"asciidoctor-pdf",
"${relativeFile}"
],
"group": "build"
}
]
}