From 36f10399b78c034d8a9036b3d518f5fa7e29641e Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Thu, 21 Sep 2023 10:02:38 +0200 Subject: [PATCH] Fix mermaid diagrams custom renderer The "!!" marker is actually a YAML token, so when using quotes it changes the semantics and the Python formatter is never used. Signed-off-by: Leandro Lucarella --- RELEASE_NOTES.md | 2 +- mkdocs.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 0aed85df0..461b25d64 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -17,4 +17,4 @@ ## Bug Fixes - +- Fix rendering of diagrams in the documentation. diff --git a/mkdocs.yml b/mkdocs.yml index cd1540460..e30f87f17 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -76,7 +76,7 @@ markdown_extensions: custom_fences: - name: mermaid class: mermaid - format: "!!python/name:pymdownx.superfences.fence_code_format" + format: !!python/name:pymdownx.superfences.fence_code_format - pymdownx.tabbed - pymdownx.tasklist - toc: