unblinking / recipe-report

🗃 recipe.report monorepo
https://www.recipe.report
GNU Affero General Public License v3.0
1 stars 0 forks source link

Mermaid test #81

Closed jmg1138 closed 2 years ago

jmg1138 commented 2 years ago

Trying out mermaid code block

flowchart TD;
    A[Start] --> B{Question?};
    B -- Yes --> C[Do this];
    B -- No --> D[Do that];
    C ----> E[Done];
    D ----> E[Done];
graph TD;
    A --> B;
    A --> C;
    B --> D;
    C --> D;