TLmaK0 / gravizo

How to include graphviz graphs in github README

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PlantUML Sequence Diagrams

konsumer opened this issue · comments

The sequence diagram you have as an example in the README doesn't render correctly:

It should look like this:

expected

But it looks like this:

actual

(note lines connecting top-right of "First Class")

Here is the current inline version:

![Alt text](https://g.gravizo.com/g?
@startuml;
actor User;
participant "First Class" as A;
participant "Second Class" as B;
participant "Last Class" as C;
User -> A: DoWork;
activate A;
A -> B: Create Request;
activate B;
B -> C: DoWork;
activate C;
C --> B: WorkDone;
destroy C;
B --> A: Request Created;
deactivate B;
A --> User: Done;
deactivate A;
@enduml)

Hi @konsumer, this is a duplicated of #16, every day the dot service is restarted to workaround it, so It should work today. I'm investigating it.

Sorry, and thanks!