11 lines
345 B
PowerShell
11 lines
345 B
PowerShell
$scriptDir = $PSScriptRoot
|
|
|
|
$imgName = "ext-kunde__stufen"
|
|
$srcFile = Join-Path $scriptDir "$imgName.mmd"
|
|
$destFile = Join-Path $scriptDir "$imgName.svg"
|
|
mmdc -i $srcFile -o $destFile
|
|
|
|
$imgName = "ext-kunde__architektur"
|
|
$srcFile = Join-Path $scriptDir "$imgName.mmd"
|
|
$destFile = Join-Path $scriptDir "$imgName.svg"
|
|
mmdc -i $srcFile -o $destFile |