Plantuml is exported to HTML as <pre> not embedded SVG
See original GitHub issueWhat is the problem?
The plantuml is not exported to html, but properly previewed. Math is working in both.
Can you just embed SVG in HTML export ?
How can I reproduce it?
# Message Sequence Charts ```plantuml @startuml participant a as "gggg" a->b: go @enduml ```
Is there any error message in the console?
No.
Issue Analytics
- State:
- Created 3 years ago
- Comments:14 (9 by maintainers)
Top Results From Across the Web
Generation of SVG file - PlantUML
PlantUML can generate images using SVG format. Those file can be integrated in LaTeX, HTML or PDF documents with a better result than...
Read more >PlantUML advanced features - AugmentedMind.de
If you want to print the diagram, do not use PlantUML's PDF ( -tpdf ) export, but export the file as SVG (...
Read more >Markdown native diagrams with PlantUML - Andreas' Blog
This post covers PlantUML basics and how it can be used in GitLab or GitHub projects as well as a seamless local development...
Read more >Review of Diagrams-as-Code for mdBook - Bryce Fisher-Fleig
The rendered is simply copying your MermaidJS diagram from the code fence into a <pre class="mermaid">{}</pre> html tag, and defering the SVG ......
Read more >plantuml-markdown - PyPI
png : HTML img tag with embedded png image; svg : HTML img tag with embedded ... export INSTALLPATH="`python -m site --user-site`/plantuml-markdown" $...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is a bug of PlantUML Extension (jebbs.plantuml-2.13.9) The extension does not implement
extendMarkdownIt
properly. WhenextendMarkdownIt
is called, there always causes a error even through a renderer for PlantUML is actually added. VSCode’s Markdown Previewer will ignore this error while Markdown All in One will fail, so you can preview it normally but can’t export it to html.