How can I make a binary tree in Joplin

I would like to do something like this:
my.inkdrop.app/plugins/graphviz
image

but I have not found anything like for Joplin.
Do you have a suggestion?

Joplin uses mermaid for diagrams.

To insert a mermaid chart, you create a codeblock with the name mermaid, so a binary tree would look like this in Joplin

```mermaid
graph TD
    1 --> 2
    1 --> 3
    2 --> 4
    2 --> 5
    3 --> 6
    3 --> 7
    4 --> 8
    4 --> 9
    5 --> 10
    5 --> 11
    6 --> 12
    6 --> 13
    7 --> 14
    7 --> 15
```

4 Likes

I use mind mapping tool

使用VSCode绘制思维导图

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.