plantuml / plantuml-server

PlantUML Online Server
https://plantuml.com/
GNU General Public License v3.0
1.59k stars 463 forks source link

Add support for diagrams without `@startuml` and `@enduml` #308

Closed HeinrichAD closed 11 months ago

HeinrichAD commented 11 months ago

Currently, the proxy as well as post requests always throw an "index out of range" exception if @startuml and @enduml are missing. Only normal get requests work, since during the encoding and/or decoding of the uml code the @startuml and @enduml are added automatically.

The inspiration for the code changes were taken from here:

https://github.com/plantuml/plantuml/blob/29bcbfee89bc9df3ab3d2a40194604a157349896/src/net/sourceforge/plantuml/api/PlantumlUtils.java#L47-L54

closes #20