You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
Expected
Workaround
use a different word instead of
while
. or reformat paragraph so thatwhile
si not the first word of the line, for example:The text was updated successfully, but these errors were encountered: