From ab675842d01ec3921bc3c799c0ef4cbd400b6135 Mon Sep 17 00:00:00 2001 From: Jonathan Sharpe Date: Sat, 29 Apr 2023 17:24:37 +0100 Subject: [PATCH] Fix typo for Mermaid overrides --- bulrush/templates/mermaid.html | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bulrush/templates/mermaid.html b/bulrush/templates/mermaid.html index cdec08e..978596b 100644 --- a/bulrush/templates/mermaid.html +++ b/bulrush/templates/mermaid.html @@ -9,5 +9,5 @@ }, }; - mermaid.initialize({ ...defaults, ...JSON.parse({{ MERMAID | tojson }}) }); + mermaid.initialize({ ...defaults, ...{{ MERMAID | tojson }} }); diff --git a/setup.py b/setup.py index edf8f52..49e0c2e 100644 --- a/setup.py +++ b/setup.py @@ -30,5 +30,5 @@ test_suite='tests', tests_require=['pelican'], url='https://github.com/textbook/bulrush', - version='0.6.2', + version='0.6.3', )