HTML markup in autonumber when using text graphics

0 votes
asked Jul 2, 2013 in Bug by anonymous

This intput -with -ttxt

@startuml
autonumber
hide footbox
participant "Client" as C
participant "Service" as S
C->S: input
C<--S: output
@enduml
 
produces this output
 
     ,------.          ,-------.
     |Client|          |Service|
     `--+---'          `---+---'
        |     <b>1</b>     |    
        |     input        |    
        | ---------------->|    
        |                  |    
        |     <b>2</b>     |    
        |     output       |    
        | <- - - - - - - - |    
        |                  |    
 
Is there a way to get rid of the <b></b> markup and have the number of the same line?
 
 

2 Answers

0 votes
answered Jul 3, 2013 by plantuml (295,000 points)
Hello,

It's a bug : will be fixed in next release.

Thanks for the report.

By the way, plain ASCII output is not highly tested, so do not hesitate to report bugs here.
We are glad that someone finds this usefull :-)
0 votes
answered Jul 3, 2013 by plantuml (295,000 points)
This is fixed in version 7971

Regards,
commented Jul 8, 2013 by anonymous
Looks good.  Thanks!
...