Hello PlantUML team,
During test of `port`...
1/ Could you improve `port` management, when we are on horizontal layout:
Here it seems OK (except the overlap at the level of the node name, and the large layout (with position of f3)!):
Code | Output |
@startuml
'left to right direction
card c
node node {
port p1
port p2
port p3
file f1
file f3
}
c --> p1
c --> p2
c --> p3
p1 --> f1
p2 --> f1
p3 --> f3
@enduml |  |
@startuml
left to right direction
card c
node node {
port p1
port p2
port p3
file f1
file f3
}
c --> p1
c --> p2
c --> p3
p1 --> f1
p2 --> f1
p3 --> f3
@enduml |  |
But here KO:
Code | Output |
@startuml
'left to right direction
card c
node node {
port p1
port p2
port p3
file f1
}
c --> p1
c --> p2
c --> p3
p1 --> f1
p2 --> f1
@enduml |  |
@startuml
left to right direction
card c
node node {
port p1
port p2
port p3
file f1
}
c --> p1
c --> p2
c --> p3
p1 --> f1
p2 --> f1
@enduml |  |
2/ Could you also improve this error:
@startuml
card c
port t
@enduml

Thanks a lot for your works,
Regards.