Hi
In my markdown files, I add this tags:
![](mainSequence.png)
<!--
@startuml mainSequence
User -> Browser: Submit
...
@enduml
-->
To define an render the image: mainSequence.png
From command line (kubuntu os) I run
$plantuml -tpng <input-file-pattern>
And will generate the image mainSequence.png.
I have also included tags for json in the same file
![](RequestMessage.png)
<!--
@startjson RequestMessage
{
"user": "mchiuminatto",
"service":"tech-analysis",
"instrument":"EUR/USD",
"time-frame": "H1",
"request-datetime": "2024-04-01 05:00:00"
}
@endjson
-->
But plantuml will not generate the image.
Here goes the question.
Does exist any tool like command line plantuml to render PlantUML json as image?
Thanks!