wodeni / obsidian-penrose-plugin

A plugin for Obsidian that allows you to make diagrams with Penrose (https://penrose.cs.cmu.edu/).
MIT License
2 stars 1 forks source link

obsidian-penrose

This is a plugin for making diagrams in Obsidian using Penrose.

This plugin is currently under development and not published yet.

Getting Started

Example

Currently, the plugin hard-codes the Domain and Style files to be simple-directed-graph from graph-domain. The plugin recognizes markdown code blocks with the penrose tag and renders diagrams such as:

```penrose
Vertex a, b, c, d

Arc(a, b)
Arc(a, c)
Arc(a, d)
Arc(b, d)
Arc(c, d)

Label a "𝑎"
Label b "𝑏"
Label c "𝑐"
Label d "𝑑"