OpenIconic does not work in v. 8036

0 votes
asked Mar 3, 2016 in Bug by habdank (420 points)
Deas,

OpenIconic does not in v. 8036

The basic OpenIconic example copied and pasted to the plantuml.com website produces drawing with text not replaced by icons/cliparts.

Best regards,

Seweryn.

1 Answer

+1 vote
answered Mar 3, 2016 by plantuml (298,440 points)

Hello,

Could you give a non working example ?

The following seems to be ok :

class Wifi
note left
  Click on <&wifi>
end note

The online server is running V8036.

Did you compile the program yourself ? Which config/plugin are you using ?

Thanks

commented Mar 3, 2016 by habdank (420 points)
I had "copy and paste"-ed the code below in the demo TextBox in the main plantuml.com site. Is it possible that IE makes some strange things? How request is processed? Is it on the Server side?

title: <size:20><&heart >Use of OpenIconic <&heart ></size >
class Wifi
note left
Click on <&wifi >
end note
commented Mar 3, 2016 by plantuml (298,440 points)
There is a supplementary space in your <&wifi >
Just before the closing bracket.
Try to remove it, it should work better.
commented Mar 3, 2016 by habdank (420 points)
I had removed all spaces from copied text and now it works.
It is interesting, as I had copied text from PlantUML PDF file,
so it seems there are some unnecessary spaces.
And you are right. The code below works:

@startuml
title: <size:20><&heart>Use of OpenIconic <&heart></size>
class Wifi
note left
Click on <&wifi>
end note
@enduml

Thanks!!!
...