You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, the example within the readme are not working.
However, I would like to add that for activity diagrams (vertical line things), we can also use those icons. For example:
@startuml My Sample
title Some kind of title
!include <font-awesome/common>
' https://github.com/Roemer/plantuml-office (basically the ICONURL in VS code need a local URI)
!define ICONURL ../plantuml-office/office2014
!include ICONURL/Devices/workstation_pc.puml
!include ICONURL/Servers/mainframe_host.puml
participant "<$workstation_pc>" as pc
participant "<$device_printer>" as printer
pc -> printer: Print a document
printer -> pc: Ok!
@enduml
The text was updated successfully, but these errors were encountered:
Hi
I fixed the examples. The problem was that !include <font-awesome/common> must be changed to !include <tupadr3/common>.
Your example works like this:
@startuml
title Some kind of title
!include <tupadr3/common>
' https://github.com/Roemer/plantuml-office (basically the ICONURL in VS code need a local URI)
!define ICONURL https://raw.githubusercontent.com/Roemer/plantuml-office/master/office2014
!include ICONURL/Devices/workstation_pc.puml
!include ICONURL/Servers/mainframe_host.puml
participant "<$workstation_pc>" as pc
participant "<$device_printer>" as printer
pc -> printer: Print a document
printer -> pc: Ok!
@enduml
Hi, the example within the readme are not working.
However, I would like to add that for activity diagrams (vertical line things), we can also use those icons. For example:
The text was updated successfully, but these errors were encountered: