add graph exemple

main
Jean-Marie 'Histausse' Mineau 2024-03-21 12:09:18 +01:00
parent cf4d52e6dc
commit d7e58054b3
Signed by: histausse
GPG Key ID: B66AEEDA9B645AD2
1 changed files with 9 additions and 0 deletions

View File

@ -1,2 +1,11 @@
#import "@local/notes:0.0.1": *
#show: notes-template
```dot-render
digraph mygraph {
rankdir="LR";
b -> a;
a -> c;
c -> b;
}
```