Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 932 Bytes

README.md

File metadata and controls

43 lines (31 loc) · 932 Bytes

@beoe/rehype-graphviz

Rehype plugin to generate Graphviz diagrams in place of code fences. This

```dot
digraph G { Hello -> World }
```

will be converted to

<figure class="beoe graphviz">
  <svg>...</svg>
</figure>

which can look like this:

TODO: add screenshot

Usage

import rehypeGraphviz from "@beoe/rehype-graphviz";

const html = await unified()
  .use(remarkParse)
  .use(remarkRehype)
  .use(rehypeGraphviz)
  .use(rehypeStringify)
  .process(`markdown`);

Online documentation provides more details.

TODO