I use VSCode to write markdown files, in which i write plantuml code to have diagrams in my documents. Example:
# Hello World
My sequence diagramm
```plantuml
@startuml
Work --> Home
Home --> Work
@enduml
```
Visual Studio Code can support plantuml syntax hightlighting (with some extensions). However, the built-in markdown extension does not support plantuml in fenced code block. So we won't have plantuml syntax highlighting within markdown files.
Is it possible to add plantuml support in markdown syntax by extension, or does it require a feature request in VSCode markdown extension ?