Compare commits

...

2 Commits

Author SHA1 Message Date
Jean-Marie 'Histausse' Mineau 4c426e7661
add todo 2024-03-21 12:11:29 +01:00
Jean-Marie 'Histausse' Mineau d7e58054b3
add graph exemple 2024-03-21 12:09:18 +01:00
2 changed files with 14 additions and 0 deletions

View File

@ -21,3 +21,8 @@ Or to create a new note:
``` ```
typst init @local/notes <directory> typst init @local/notes <directory>
``` ```
## TODO:
- add new raw type with graphviz boillerplate code
- biblio

View File

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