[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2025-04-04 17:37:42 +00:00
committed by GitHub
parent 9208e7faaf
commit 52cd9e8e55

View File

@@ -1229,13 +1229,13 @@ In the initial version, two animation speeds are supported: `fast` and `slow`. S
```mermaid-example
flowchart LR
A e1@-> B
A e1@> B
e1@{ animation: fast }
```
```mermaid
flowchart LR
A e1@-> B
A e1@> B
e1@{ animation: fast }
```
@@ -1247,14 +1247,14 @@ You can also animate edges by assigning a class to them and then defining animat
```mermaid-example
flowchart LR
A e1@-> B
A e1@> B
classDef animate stroke-dasharray: 9,5,stroke-dashoffset: 900,animation: dash 25s linear infinite;
class e1 animate
```
```mermaid
flowchart LR
A e1@-> B
A e1@> B
classDef animate stroke-dasharray: 9,5,stroke-dashoffset: 900,animation: dash 25s linear infinite;
class e1 animate
```