butiran

flowchart linkstyle

intro

To create diagrams dynamically in an internet browser you can use Mermaid, which is a diagramming and charting tools based on JavaScript and inspired by Markdown text definitions (Woodward & Biagianti, 2022). It has default style, which should be sufficient. But if an adjustment is necessary, e.g. style of the link – the line connecting two nodes, can be modified (Drago, 2023) and also the other features.

flowchart

flowchart LR B --> I --> P --> O --> E B(["Begin"]) I[/"Input"/] P["Process"] O[/"Output"/] E(["End"]) linkStyle default stroke:red linkStyle 1 stroke:blue linkStyle 3 stroke:green

code

flowchart LR
  B --> I --> P --> O --> E
  
  B(["Begin"])
  I[/"Input"/]
  P["Process"]
  O[/"Output"/]
  E(["End"])
  
  linkStyle default stroke:red
  linkStyle 1 stroke:blue
  linkStyle 3 stroke:green

linkstyle

limitation

refs