We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When inside the condition of the if clause there is a pair of parenthesis, formatter adds a carry return and breaks the ssyntaxis of the diagram.
Example:
This following plantUML code is manually correctly formatted
@startuml title : Formatter double parenthesis issue start if (exists(error)) then (yes) :throw (Exception(null)); endif stop @enduml
But when autoformatting the result is the following
@startuml title : Formatter double parenthesis issue start if (exists(error) ) then (yes) :throw (Exception(null)); endif stop @enduml
That causes the following issue in the diagram renderer:
Note: The double parenthesis inside the throw is formatted perfectly
The text was updated successfully, but these errors were encountered:
810389a
No branches or pull requests
When inside the condition of the if clause there is a pair of parenthesis, formatter adds a carry return and breaks the ssyntaxis of the diagram.
Example:
This following plantUML code is manually correctly formatted
But when autoformatting the result is the following
That causes the following issue in the diagram renderer:
Note: The double parenthesis inside the throw is formatted perfectly
The text was updated successfully, but these errors were encountered: