Replace ASCII diagrams with Graphviz DOT in architecture and ticket docs.

This commit is contained in:
russell@unturf.com 2026-03-10 09:29:36 -04:00
parent b63277e4d1
commit 75bec564b2
2 changed files with 203 additions and 110 deletions

View file

@ -13,10 +13,24 @@ Wiki mode lets anyone edit root topics with revision tracking.
## Architecture
```
Namespace (book) → pandoc → all formats (default)
└── Root Node (chapter) → pandoc → all formats (default)
└── Reply (section) → pandoc → on-demand only
```dot
digraph export_hierarchy {
rankdir=LR
node [shape=box, style=rounded, fontname="sans-serif"]
namespace [label="Namespace\n(book)"]
root [label="Root Node\n(chapter)"]
reply [label="Reply\n(section)"]
pandoc [label="pandoc", shape=ellipse]
formats [label="67 output\nformats", shape=note]
namespace -> root [label="contains"]
root -> reply [label="contains"]
namespace -> pandoc [label="default"]
root -> pandoc [label="default"]
reply -> pandoc [label="on-demand"]
pandoc -> formats
}
```
### Data model changes