Anpassungen an der Mermaid-Bildkonvertierung

This commit is contained in:
2026-07-17 16:25:33 +02:00
parent eb809f5fab
commit bbc1738771
5 changed files with 17 additions and 6 deletions
+1
View File
@@ -1,4 +1,5 @@
*.doc
*.docx
*.pdf
*.png
.obsidian
+9 -4
View File
@@ -1,11 +1,16 @@
$scriptDir = $PSScriptRoot
$cfgFile = Join-Path $scriptDir 'mermaid-config.json'
$imgName = "ext-kunde__stufen"
$srcFile = Join-Path $scriptDir "$imgName.mmd"
$destFile = Join-Path $scriptDir "$imgName.svg"
mmdc -i $srcFile -o $destFile
$destFile1 = Join-Path $scriptDir "$imgName.svg"
$destFile2 = Join-Path $scriptDir "$imgName.png"
mmdc -i $srcFile -o $destFile1 -c $cfgFile
mmdc -i $srcFile -o $destFile2 -s 3
$imgName = "ext-kunde__architektur"
$srcFile = Join-Path $scriptDir "$imgName.mmd"
$destFile = Join-Path $scriptDir "$imgName.svg"
mmdc -i $srcFile -o $destFile
$destFile1 = Join-Path $scriptDir "$imgName.svg"
$destFile2 = Join-Path $scriptDir "$imgName.png"
mmdc -i $srcFile -o $destFile1 -c $cfgFile
mmdc -i $srcFile -o $destFile2 -s 3
File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

@@ -0,0 +1,5 @@
{
"flowchart": { "htmlLabels": false },
"sequence": { "htmlLabels": false },
"gantt": { "htmlLabels": false }
}