Skip to content

Commit 36f1039

Browse files
committed
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 <[email protected]>
1 parent b71335f commit 36f1039

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

RELEASE_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717

1818
## Bug Fixes
1919

20-
<!-- Here goes notable bug fixes that are worth a special mention or explanation -->
20+
- Fix rendering of diagrams in the documentation.

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ markdown_extensions:
7676
custom_fences:
7777
- name: mermaid
7878
class: mermaid
79-
format: "!!python/name:pymdownx.superfences.fence_code_format"
79+
format: !!python/name:pymdownx.superfences.fence_code_format
8080
- pymdownx.tabbed
8181
- pymdownx.tasklist
8282
- toc:

0 commit comments

Comments
 (0)