I would like a component name that begins and ends with two underscore characters, for example: __init__
It appears that double underscore causes a mid height dot to be rendered or underlines the word if enclosed in single quotes.
Here's a demo:
@startuml
package "test" {
[alpha]
[_bravo_]
[__charlie__]
["__delta__"]
[\__echo__]
[\_\_foxtrot\_\_]
[_\_golf__]
[_\_hotel\__]
[__ india __]
['__juliet__']
}
@enduml
Any ideas how to escape the double underscores?
Thank you