jekyll-mermaid icon indicating copy to clipboard operation
jekyll-mermaid copied to clipboard

A Jekyll plugin to simplify the creation of mermaid diagrams and flowcharts in your posts and pages.

Results 8 jekyll-mermaid issues
Sort by recently updated
recently updated
newest added

If you write markdown like this in github: ~~~markdown ```mermaid graph TD; A-->B; A-->C; B-->D; C-->D; ``` ~~~ It renders the mermaid like this: ```mermaid graph TD; A-->B; A-->C; B-->D;...

https://travis-ci.org/github/albertlauncher/documentation I build a page containing mermaid code using jekyll on travis. Afaik I set everything up as defined in the docs. However it is failing. What am I doing...

Kramdown can be configured to do markdown parsing also inside HTML tags. In that mode, you need to use the attribute markdown="0" to protect the contents of html from processing....

not working... I have this in my _config.yml file: ``` mermaid: src: '/usr/local/lib/node_modules/mermaid/src/mermaid.js' ``` it report: ``` ERROR `/usr/local/lib/node_modules/mermaid/src/mermaid.js' not found ``` but I do have this file in there....

Some layouts compress the code of the pages. As the content of this div must be preserved as is, it is better to protect it :)

The [mermaid documentation](http://knsv.github.io/mermaid/#installation) states that you need to include their CSS, not only JS. However, this plugin provides only an attribute `src` to include the JS. CSS must be included...

Please see the issue at https://github.com/knsv/mermaid/issues/291 --- Using the Jekyll plugin and getting the error `Invalid value for attribute viewBox="0 0 -Infinity -Infinity"`. Also get the error when calling `mermaid.init();`...

How do we pass configuration options -- either globally in the init, or on a per-graph basis? Neither: https://mermaid.js.org/config/theming.html#site-wide-theme nor: https://mermaid.js.org/config/theming.html#diagram-specific-themes work from what I can tell with this plugin...