diff --git a/template/main.typ b/template/main.typ index 5750148..d2775dd 100644 --- a/template/main.typ +++ b/template/main.typ @@ -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; +} +```