Skip to content

Instantly share code, notes, and snippets.

@ninmonkey
Last active October 17, 2022 00:58
Show Gist options
  • Select an option

  • Save ninmonkey/f560f5476632867013821c125bdf08cb to your computer and use it in GitHub Desktop.

Select an option

Save ninmonkey/f560f5476632867013821c125bdf08cb to your computer and use it in GitHub Desktop.
Snippets/Templates For Tables and Mermaid Diagrams
Useful web utilities

Live editor Markdown Tables
Copy -> pastes
and converts CSV to Markdown

Live Editor for Mermaid diagrams

Hierarchy / Bill of Materials

graph TD;
Bob-->Jen;
Bob-->Sue;
Jen-->John;
Sue-->Ken;
Jen-->Bill;
Loading
```mermaid
graph TD;
Bob-->Jen;
Bob-->Sue;
Jen-->John;
Sue-->Ken;
Jen-->Bill;
```

Tables

id user manager
0 bob null
1 Jen 0
2 sue 0
3 john 1
4 Ken 2
5 Bill 1
```
| id | user | manager |
| -	| -	| - |
| 0 | bob | null |
| 1 | Jen | 0 |
| 2 | sue | 0 |
| 3 | john | 1 |
| 4 | Ken | 2 |
| 5 | Bill | 1 |
```

See also

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment