Hey folks, we use mermaid diagrams extensively through our catalog and recently realised that all diagrams using the flowchart TD or flowchart LR diagrams, don't get rendered properly. By that, I mean the blocks do get rendered, but the text within them doesn't load up (see attached photo). This doesn't seem to be the case with sequence diagrams. We are running the latest version of the plugin as well as techdocs core. What could we be doing wrong?
This is the mkdocs.yml file that we use
site_name: Service Name
`exclude_docs: |
ADR_Template.md
README.md
plugins:
- mermaid2:
version: 9.2.2 - awesome-pages:
strict: false
markdown_extensions:
- admonition
- attr_list
- sane_lists
- plantuml_markdown
- pymdownx.highlight:
linenums: true
linenums_style: pymdownx-inline - toc:
permalink: '🔗' - pymdownx.details
- pymdownx.extra:
pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format`