Draft for Specification

This commit is contained in:
2026-08-02 22:29:30 +02:00
commit 81297da520
21 changed files with 12516 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
{
"workbench.colorTheme": "Light Modern",
"plantuml.render": "PlantUMLServer",
"plantuml.server": "http://www.plantuml.com/plantuml"
}
+24
View File
@@ -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"
}
]
}