set namespaceSeparator does not work when an alias is used

0 votes
asked Mar 18, 2019 in Bug by andi
Hi,

The following example detects a namespace animal and a class dinosaur

@startuml
set namespaceSeparator ::

class "animal::dinosaur" {
void run()
}

@enduml

The following example using an alias only displays a class animal::dinosaur

@startuml
set namespaceSeparator ::

class "animal::dinosaur" as dino{
void run()
}

@enduml

1 Answer

0 votes
answered Mar 21, 2019 by andi
Hi,

I think I got the point now.

The text in quotation marks is the pretty and fancy printing text that is displayed in the diagram and the other one is the identifier that is used for namespace detection.

I tried to use the alias as short identifier.
...