Skip to main content

All Questions

Tagged with
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
-1 votes
2 answers
464 views

Script to generate Markdown files with embedded PlantUML diagrams for GitLab's PlantUML renderer

I am setting up a repository to store software documentation consisting of several documents which are written in Markdown, and I want to be able to embed PlantUML diagrams in them. The repository is ...
pcba-dev's user avatar
  • 722
0 votes
0 answers
2k views

Run a bat from pyCharm

I have in my repository some files writen in plantUML (these are actually .txt files). I also have a .bat which has the code line : java -jar plantuml.jar ../SequencesDiagrams/plantUML_file_name. My ...
Maxime Bouhadana's user avatar
1 vote
1 answer
141 views

How to wait until java compilation of PlantUML diagrams is completed, in Python?

Context I've written a Python code that: First generates PlantUML .uml files. Then runs a Java command to locally compile those .uml files into .png diagrams. Exports those diagrams into a /images ...
a.t.'s user avatar
  • 2,584
0 votes
0 answers
919 views

Plugin plantUML in PyCharm can't find Graphviz

The plugin does not render schemas. The error is shown in the picture. What is done: Environment variable GRAPHVIZ _DOT = '/usr/bin/dot' added to ./bashrc The path /usr/bin/dot is specified in ...
Ольга И's user avatar
2 votes
2 answers
4k views

Increase graph size in plantUML from python?

MWE To generate PlantUML diagrams in (sub)folder: /Diagrams/ I use the following python script: from plantuml import PlantUML import os from os.path import abspath from shutil import copyfile os....
a.t.'s user avatar
  • 2,584
1 vote
1 answer
9k views

How to create multiple PlantUML diagrams from a python script?

Scenario Most instructions suggest you can generate PlantUML diagrams with python using: python -m plantuml example_diagram.txt. I wanted to create a python script that generates multiple PlantUML ...
a.t.'s user avatar
  • 2,584
0 votes
1 answer
5k views

How can I include a plantuml file in reStructuredText with Sphinx

I have a plantuml file composite.puml with the following content: package composite { class Letter { + __init__(char: str) # print_this_before() } And I try to include this in a ...
Johan Vergeer's user avatar
3 votes
1 answer
847 views

How to get captions with markdown in pandocfilters?

I tried the PlantUML filter to generate LaTeX figures from PlantUML code in markdown source. It works nicely (I changed it to generate PDF for LaTeX since it preserves the text items in the PlantUML ...
Fuhrmanator's user avatar
  • 12.4k
2 votes
1 answer
2k views

PlantUml to Sequence Diagram

I googled it all but not able to find the tool to convert PLANTUML to the sequence diagram in python Is there any library / tool for converting the plantuml to sequence diagram using python? I ...
Harry's user avatar
  • 3,202
2 votes
1 answer
2k views

sphinx doc: How to render dynamic rst content inside sphinx event handlers?

I'm the maintainer of sphinx-needs, which allows the definition of requirements, bugs, ... These objects get stored inside the related directive run function and I finally get a list of all objects ...
danwos's user avatar
  • 500
1 vote
0 answers
333 views

Pelican plantuml plugin not rendering diagrams

I want to generate diagrams from .md files. For some reason the plantuml markup is not recognized and as a result there are no diagrams generated. I have a working Pelican setup. (see debug log) Also ...
Peter's user avatar
  • 63
8 votes
4 answers
8k views

iPython notebook plantuml extension

How can we use plantuml UML tool in iPython notebook? It should helpful for us since UML figure is frequently used during paper work. After some google from internet, I have found one excellent ...
lucky1928's user avatar
  • 8,611