Skip to content
New issue

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

while inside keyword still creates indentation in activity diagram #110

Open
MartyLake opened this issue May 10, 2024 · 1 comment
Open

Comments

@MartyLake
Copy link

For some reason, when creating an activity diagram, multi line comments are supported, but if they contain the while keyword at the beginning of the line, then an indentation happens.

Actual

@startuml
note right
  Extractor knowledge of
  the native format
  is not assumed
  while Enriching
end note

  |#AntiqueWhite|Swimlane2|
@enduml

Expected

@startuml
note right
  Extractor knowledge of
  the native format
  is not assumed
  while Enriching
end note

|#AntiqueWhite|Swimlane2|
@enduml

Workaround

use a different word instead of while. or reformat paragraph so that while si not the first word of the line, for example:

@startuml
note right
  Extractor knowledge of
  the native format
  is not assumed while
  Enriching
end note

|#AntiqueWhite|Swimlane2|
@enduml
@aklt
Copy link
Owner

aklt commented May 12, 2024

Thanks for reporting this!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants