Draft for Specification
This commit is contained in:
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"workbench.colorTheme": "Light Modern",
|
||||
"plantuml.render": "PlantUMLServer",
|
||||
"plantuml.server": "http://www.plantuml.com/plantuml"
|
||||
}
|
||||
Vendored
+24
@@ -0,0 +1,24 @@
|
||||
{
|
||||
// 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"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user