Skip to content

Commit

Permalink
Remove unsupported backticks
Browse files Browse the repository at this point in the history
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. 🤷
  • Loading branch information
movermeyer committed Nov 10, 2024
1 parent 08f4a50 commit 46a28d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions why_ciso8601.md
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand Down

0 comments on commit 46a28d7

Please sign in to comment.