joethei / obsidian-plantuml

Generate PlantUML Diagrams inside Obsidian.md
MIT License
368 stars 18 forks source link

Local .jar file #46

Open SHU-red opened 1 year ago

SHU-red commented 1 year ago

Is your feature request related to a problem? Please describe.

Describe the solution you'd like

Describe alternatives you've considered

Additional context

Code

Dependency

[SpaceShip] .> [Input]

Dependency relationship implies that two elements are dependent on each other. It is used to reflect that one class interacts with another one, receives an instance this class as a method parameter. Compared to Association, Dependency relationship is weaker.

Implementation

[IGameElement] <<Interface>>
[SpaceShip] .up.|> [IGameElement]

Interface implementation.

Result

image

joethei commented 1 year ago

I can't reproduce this with an older version of the plantuml jar, but can with the most recent one. Guessing the server used is not using the latest plantuml version. I am suspecting that this is a regression in PlantUML itself, but will investigate further.

It starts to work for me when I insert a empty line in the diagram code.

SHU-red commented 1 year ago

It starts to work for me when I insert a empty line in the diagram code.

Thanks for the effort Works for me as workaround 😉

SHU-red commented 1 year ago

EDIT: I see a different behavior comparing

In Read Mode (which i am using often) more generated images seem to be broken

I have no idea if there is a place where the images are getting cached or something