plantuml / plantuml

Generate diagrams from textual description
https://plantuml.com
Other
9.66k stars 878 forks source link

[Chen ERD] Allow empty `entity` or `relationship` on one-line (i.e. Without `{` and `}`) #1741

Open The-Lum opened 3 weeks ago

The-Lum commented 3 weeks ago

Context

To follow:

Wanted feature [for V1.2024.5+]

Example

@startchen

entity Person 
entity Location 
relationship Birthplace 

Person -N- Birthplace
Birthplace -1- Location

@endchen

As on Deployment diagram:

@startuml

entity Person
entity Location

card "on deployment diag."

@enduml

Or on Class;

@startuml

entity Person
entity Location

Class "on deployment diag."
hide empty members
@enduml

Regards, Th.

[FYI @Benjamin-Davies]