I think Plantuml would fit to the context of the Boostnote.
Once mastered we could write nice UML diagrams without leaving markdown editor.
Hi, @PrimaMateria. Thank you for a great suggestion. I consider to implement it.
FYI, you can put a UML via https://g.gravizo.com. I know it's not what you meant.
http://www.gravizo.com/
# UML
<img src='https://g.gravizo.com/svg?@startuml;actor User; participant "First Class" as A; participant "Second Class" as B; participant "Last Class" as C; User -> A: DoWork; activate A; A -> B: Create Request; activate B; B -> C: DoWork; activate C; C --> B: WorkDone; destroy C; B --> A: Request Created; deactivate B; A --> User: Done; deactivate A; @enduml '>

And you can use flowchart as well (actually I even forgot it).

Please remove back slashes \ before `
\`\`\`flowchart
st=>start: Start:>http://www.google.com[blank]
e=>end:>http://www.google.com
op1=>operation: My Operation
sub1=>subroutine: My Subroutine
cond=>condition: Yes
or No?:>http://www.google.com
io=>inputoutput: catch something...
st->op1->cond
cond(yes)->io->e
cond(no)->sub1(right)->op1
\`\`\`
Sequence as well.

\`\`\`sequence
Title: Here is a title
A->B: Normal line
B-->C: Dashed line
C->>D: Open arrow
D-->>A: Dashed open arrow
\`\`\`
@Rokt33r Is this issue still opened?
Not working in latest boostnote 0.1.4
@eleijonmarck I don't see any problems in the latest version(v0.15.1). Could you try again with it? If you still have the same problem, please create a new issue.
https://github.com/BoostIO/boost-releases/releases/tag/v0.15.1
@eleijonmarck That is an issue for another repo. (This repo is for Boostnote.) The repo you need is for Boost Note.next - the beta app.
Most helpful comment
And you can use
flowchartas well (actually I even forgot it).Please remove back slashes \ before `
Sequenceas well.