41 lines
562 B
Plaintext
41 lines
562 B
Plaintext
#import "@local/notes:0.0.1": *
|
|
#show: notes-template.with(doc_type: "research_journal", keywords: ("ipsum",))
|
|
|
|
```dot-render
|
|
digraph mygraph {
|
|
rankdir="LR";
|
|
b -> a;
|
|
a -> c;
|
|
c -> b;
|
|
}
|
|
```
|
|
|
|
```digraphLR
|
|
a -> b;
|
|
b -> c;
|
|
c -> a;
|
|
```
|
|
|
|
```graphTB
|
|
a -- b;
|
|
b -- c;
|
|
c -- a;
|
|
```
|
|
|
|
Lorem ipsum dolore #todo[sit] amet
|
|
|
|
```pintora
|
|
mindmap
|
|
@param layoutDirection TB
|
|
* Pintora diagrams
|
|
** UML Diagrams
|
|
*** Sequence Diagram
|
|
*** Activity Diagram
|
|
*** Component Diagram
|
|
** Non-UML Diagrams
|
|
*** Entity Relationship Diagram
|
|
*** Mind Map
|
|
*** Gantt Diagram
|
|
*** DOT Diagram
|
|
```
|