jakob1111 / dokuwiki-plugin-flowcharts

Add flowcharts and diagrams to Dokuwiki with an incredibly simple syntax
GNU General Public License v2.0
7 stars 8 forks source link

Compatibility with release "Igor"? #29

Open j0hannes opened 2 years ago

j0hannes commented 2 years ago

Hi,

Is this plugin compatible with the latest Dokuwiki release?

it-ka commented 2 years ago

Hi, svg sizing is wrong in Igor Looks like it can be fixed with adding height: auto; to mermaid svgs. I added a line to mermaid-override.css

  .mermaid svg {
    width: 100%;
+   height: auto;
  }