File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,18 @@ jobs:
2020 with :
2121 ruby-version : 3.4
2222
23+ # INSTALLATION: Installiere asciidoctor-kroki Gem für Mermaid-Unterstützung
24+ - name : Install Asciidoctor Kroki Gem
25+ run : gem install asciidoctor-kroki
26+
2327 - uses : reitzig/actions-asciidoctor@v2.0.2
2428 with :
2529 version : 2.0.26
2630
27- - name : run asciidoctor
28- run : asciidoctor -R docs -D build/site/html -a docinfo=shared -a toc=left -a toclevels=2 'docs/index.adoc'
31+ - name : run asciidoctor with Kroki extension
32+ # Registriere die Kroki-Extension (-r asciidoctor-kroki) und aktiviere sie (-a kroki=).
33+ # Mermaid-Diagramme werden mit dem Kroki-Server gerendert.
34+ run : asciidoctor -R docs -D build/site/html -a docinfo=shared -a toc=left -a toclevels=2 -r asciidoctor-kroki -a kroki= 'docs/index.adoc'
2935
3036 - name : Setup Python for Sitemap Generation
3137 uses : actions/setup-python@v5
You can’t perform that action at this time.
0 commit comments