Darren Jan-Janin

Results 2 comments of Darren Jan-Janin

For anyone interested, here's a quick and dirty python script to produce mermaid output from the Arrows JSON export. ``` import json def generate_mermaid_diagram(arrows_app_output): diagram = "graph TD;\n" for node...