'How to make Class name bold in plant UML

It is possible to style the class name in PlantUML to italic by making the class abstract. Is there a way to style the class name so that it is bold as in the example class below?

Bold class name



Solution 1:[1]

you can put the name of the class between "** and **".

Example:

@startuml

class **House** {

}

@enduml

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Sugus