From d7e58054b3380f24437c1fe8c13ac935ab703a74 Mon Sep 17 00:00:00 2001 From: Jean-Marie 'Histausse' Mineau Date: Thu, 21 Mar 2024 12:09:18 +0100 Subject: [PATCH] add graph exemple --- template/main.typ | 9 +++++++++ 1 file changed, 9 insertions(+) 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; +} +```