yuzutech / kroki

Creates diagrams from textual descriptions!

Home Page:https://kroki.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bug: Mermaid flowchart option `defaultRenderer` not configurable

butterlyn opened this issue · comments

Error results from trying to set the mermaid flowchart option defaultRenderer.

For example, the below mermaid flowchart will render on the mermaid website, but throw an error with kroki:

---
config:
  flowchart:
    defaultRenderer: "elk"
---
flowchart TD
    A[Start] --> B{Is it?}
    B -->|Yes| C[OK]
    C --> D[Rethink]
    D --> B
    B ---->|No| E[End]

Issue seems to have been resolved in the last release.