EarthProgram / did-earth

Apache License 2.0
0 stars 1 forks source link

Try using mermaid for sequence diagrams #3

Closed jandrieu closed 2 years ago

jandrieu commented 2 years ago

Check out https://github.blog/2022-02-14-include-diagrams-markdown-files-mermaid/

Turns out, you can embed sequence diagrams directly.

    ```mermaid
      graph TD;
        A-->B;
        A-->C;
        B-->D;
        C-->D;

Renders as

```mermaid
  graph TD;
      A-->B;
      A-->C;
      B-->D;
      C-->D;
jandrieu commented 2 years ago

pr #4 merged.