python_mermaid
python_mermaid copied to clipboard
Results
14
python_mermaid issues
Sort by
recently updated
recently updated
newest added
Type verification in all functions
This reprex shows that `shape = "hexagon"` is translating to Mermaid as `{{)}` instead of `{{}}`, which results in a rendering error: ```python from python_mermaid.diagram import Link, MermaidDiagram, Node #...
I'm looking for a way to use `python_mermaid` to mimic Mermaid's branching pattern: ``` a & b --> c --> d & e ``` ```mermaid flowchart LR a & b...