Vithanco for Obsidian
Estimated reading time: 1 minutes.
Write a diagram as text in your note; read it as a picture. A fenced block tagged vgl is replaced with the rendered diagram in reading view.
```vgl
vgraph decision: IBIS "Should we ship the plugin?" {
node q1: Question "Should we ship?";
node a1: Answer "Yes, soon";
node p1: Pro "Users have asked for it";
node c1: Con "Docs are still thin";
edge q1 -> a1;
edge a1 -> p1;
edge a1 -> c1;
}
```
Install
Settings → Community Plugins → Browse → Vithanco, then install and enable.
Getting started
The command palette has two entries to save you a trip to the documentation:
- Vithanco: Open VGL syntax guide
- Vithanco: Insert IBIS example
The same links live in the plugin's settings tab, under Settings → Community Plugins → Vithanco.
Why text
The diagram stays plain text inside your note. It diffs, it reviews, it syncs, and it survives every tool you will use after this one — including Vithanco itself. Nothing is stored in a format only one application can read.
The engine runs inside the plugin as WebAssembly, so nothing is sent anywhere and it works offline. Obsidian's desktop app is required.
See also
- VGL Syntax Guide — the language
- Notations — what each diagram type is for
- All integrations
Home