I'm working on an activity diagram and wanted to used monospace font for some elements. In combination with macros I've encountered behavior that is at least surprising to me:
!define TT(x) ""x""
!define E(stmt) :stmt;
'E(""does not work"")
'E(TT(does not work))
E(works fine)
The last line without monospace formatting works fine, but the first two result in errors. Is that to be expected or a problem/bug in PlantUML?