asciidoctor-intellij-plugin icon indicating copy to clipboard operation
asciidoctor-intellij-plugin copied to clipboard

Mermaidjs preview

Open themr0c opened this issue 2 years ago • 1 comments

Some mermaidjs features are not properly rendered in the preview, such as:

  • theme
  • font-awesome icons

For example:

[mermaid,target=mermaid-example,theme=forest]
....
flowchart
exemple(fa:fa-spinner Example node with a font-awesome spinner)
....

Observed preview:

Screenshot from 2023-01-20 12-10-27

Expected preview would be the same as the output of asciidoctor mermaid.adoc -r asciidoctor-diagram:

mermaid-example

themr0c avatar Jan 20 '23 11:01 themr0c

Workaround for the theme: define style options inside the diagram.

[mermaid,target=mermaid-example]
....
%%{init: {'theme' : 'forest'}}%%
flowchart
exemple(fa:fa-spinner Example node with a font-awesome spinner)
....

themr0c avatar Jan 20 '23 11:01 themr0c