From 1056889a8a6f295340f7103da0ba3817cd508522 Mon Sep 17 00:00:00 2001 From: ouhammou rachid <93659459+ouhammmourachid@users.noreply.github.com> Date: Sat, 10 Aug 2024 12:51:38 +0000 Subject: [PATCH] refactor: update image widths in README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ad7bfdd..9ce4625 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ pip install mermaid-py import mermaid as md from mermaid.graph import Graph -graph = Graph('example-flowchart',""" +sequence = Graph('Sequence-diagram',""" stateDiagram-v2 [*] --> Still Still --> [*] @@ -57,8 +57,8 @@ stateDiagram-v2 Moving --> Crash Crash --> [*] """) -rendered_graph = md.Mermaid(graph) -rendered_graph # !! note this only works in the notebook that rendered the html. +render = md.Mermaid(sequence) +render # !! note this only works in the notebook that rendered the html. ```