Skip to main content

All Questions

0 votes
1 answer
166 views

Unable to generate plantuml diagram when trying to use "iplantuml" in Jupyter Notebook within vscode

I'm trying to use iplantuml in jupyter notebook within VS Code. Keep getting this error: --------------------------------------------------------------------------- FileNotFoundError ...
jas's user avatar
  • 1,572
0 votes
1 answer
54 views

Syntax error when trying to use "iplantuml" in Jupyter Notebook

I'm trying to use plantuml in jupyter notebook within VS Code. pip install iplantuml import iplantuml %%plantuml @startuml Alice -> Bob: Authentication Request Bob --> Alice: Authentication ...
jas's user avatar
  • 1,572
0 votes
0 answers
183 views

Rendering PlantUML in Markdown in VscCode Preview and Gitlab

I have the following PlantUML diagram in a markdown file (sample.md): ### Sample UML Sequence Diagram ```PlantUML @startuml UMLSequenceDiagram Alice -> Bob: Authentication Request Bob --> Alice:...
opedroso's user avatar
  • 103
0 votes
1 answer
461 views

plantUML plug-in for VSC on Mac returns 403 when Option-D render is selected

This just started happening...when I choose to render my plantUML diagram in VSC I get this...it used to work, just recently started happening. I should mention this is a work Mac, and they often go ...
Michael Patrick Daugherty's user avatar
0 votes
0 answers
2k views

way to show plantuml diagram on markdown viewer of visual studio code

I know way to write plantuml on markdown using vs code. But plantuml diagram doesn't appear on markdown viewer... On the other hand, Plantuml viewer is working very much and markdown viewer also... ...
Jun Takeshita's user avatar
39 votes
7 answers
57k views

how to use the plantUML preview in VSCode?

I am trying to use plantuml add-ons on VSCode: there are several but none of them is working. In this eample I am using the plantUML add-on. As you can see on the second image the preview is blank. ...
Yannick Pezeu's user avatar
5 votes
0 answers
3k views

PlantUML include from URL through a proxy

I´m having a diagram in PlantUML (edited in VSCode@Windows 10) and there is a !include https://raw.githubusercontent.com/plantuml-stdlib/C4-PlantUML/master/C4_Deployment.puml in it. Im´m having the ...
Wurzelseppi's user avatar
3 votes
3 answers
5k views

Plant UML in Visual Studio Code // Config file

I'm using Plant UML in VS-Code to generate diagrams: https://marketplace.visualstudio.com/items?itemName=jebbs.plantuml I want to edit the global default extension setting: Set input folder for the ....
Impulsleistung's user avatar
2 votes
0 answers
4k views

VS Code Extension, how to programme a refresh of PlantUML preview

How can I force PlantUML to refresh its preview, using code? Longer Explanation I have 2 editors open Editor 1 contains a yml file. Editor 2 contains a plantuml .wsd file and a 3rd pane is showing the ...
macasas's user avatar
  • 552
1 vote
1 answer
5k views

Exporting a markdown file with inline PlantUml as a single SVG file

Our orginization uses markdown files with embedded PlantUml. We're trying to export the full markdown file to a single .svg file so we can view it on a third-party application. The plantuml VSCode ...
MPStoering's user avatar
2 votes
1 answer
2k views

vscode and plantuml 2.11.1 fails to include files specified by environmental variables

Using vscode for plantuml, the latest PlantUML extension version, 2.11.1, seems to break generation of diagrams specifically when including files with environment variables. And it works when we ...
Govardhan Reddy's user avatar
1 vote
1 answer
7k views

plantUML class diagram not visualized and given error

I installed this plugin and tried to draw uml diagram using PlantUML in IntelJ (or Visual Studio code). But both IDEs gave the same error. My code : @startuml Class01 <|-- Class02 Class03 *-- ...
uma's user avatar
  • 1,537
27 votes
5 answers
29k views

PlantUML extension for Visual Studio Code on Windows only working with sequence diagrams

I installed the PlantUML extension (by jebbs) in Visual Studio Code for Windows and everything is working perfectly for sequence diagrams. However when I try to render a class diagram I get the ...
Claire Furney's user avatar
0 votes
2 answers
1k views

PlantUML does not render arrows well in a class diagram (Skinparam linetype ortho mode)

I'm trying to make some complex class diagrams with PlantUML by having ortho layout for the relations between the classes. Some arrows, especially those which are connected at the bottom of an ...
Vasil Buraliev's user avatar
2 votes
1 answer
3k views

Is it possible to have plantuml syntax highlighting in markdown file?

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 --> ...
Stephane's user avatar