From 46a28d71f1ab1eedd8098d031171f385fd23785f Mon Sep 17 00:00:00 2001 From: Michael Overmeyer Date: Sat, 9 Nov 2024 22:31:05 -0500 Subject: [PATCH] Remove unsupported backticks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously, one could include backticks in their node labels. However, Mermaid v10 introduced "Markdown formatting" (which despite its name is not Markdown, but just Markdown-style bold and italics) which uses the backticks as part of its delimiters. This broke these labels. I've changed the labels to no longer use the backticks. 🤷 --- why_ciso8601.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/why_ciso8601.md b/why_ciso8601.md index b340f4c..0c97e69 100644 --- a/why_ciso8601.md +++ b/why_ciso8601.md @@ -29,9 +29,9 @@ graph TD; H--yes-->V; H--no-->Z; - V[Use `backports.datetime_fromisoformat`] - Y[Use `ciso8601`] - Z[Use `datetime.fromisoformat`] + V[Use backports.datetime_fromisoformat] + Y[Use ciso8601] + Z[Use datetime.fromisoformat] ``` ## Do you care about the performance of timestamp parsing?