Welcome to FlowZap, the App to diagram with Speed, Clarity and Control.

Markdown In Label Workflow

edge-cases

This workflow models a label that contains markdown formatting.

Full FlowZap Code

laneA { # Lanea
  n1: circle label:"Start Markdown In Label"
  n2: rectangle label:"**Bold** _italic_ [link](https://example.com)"
  n3: diamond label:"Markdown In Label step 3"
  n4: rectangle label:"Markdown In Label step 4"
  n5: circle label:"End Markdown In Label"

  n1.handle(right) -> n2.handle(left)
  n2.handle(right) -> n3.handle(left) [label="Next"]
  n3.handle(right) -> n4.handle(left)
  n3.handle(bottom) -> n2.handle(bottom) [label="Retry/Rejected"]
  n4.handle(right) -> n5.handle(left)
}

Related templates