Single line separator using 4 "_" characters

0 votes
asked Oct 23, 2015 in Bug by MAV (460 points)

Hi every one,

It is possible to separate a box (action or comment) with a double line by using 4 "=" characters.

On the previous versions, it was possible to do the same thing with a simple line by using 4 "_" characters but it don't work anymore.

Text example :

@startuml
TITLE Test_separate_action
start
:first part of the action\n____\nsecond part of the action;

:first part of the action\n====\nsecond part of the action;
end
@enduml

 

Corresponding activity diagram :

activity-beta

 

I will be gratefull if the functionality is repaired.

Regards,

MAV

1 Answer

0 votes
answered Oct 23, 2015 by plantuml (295,000 points)

Ok, we are going to have a look on this.

In the mean time, you can use ---- instead :

TITLE Test_separate_action
start
:first part of the action\n----\nsecond part of the action;

:first part of the action\n====\nsecond part of the action;
end

 

...