Merge pull request #3657 from revolter/patch-1

Remove inconsistent and deprecated semicolons
This commit is contained in:
Sidharth Vinod 2022-10-13 11:29:43 +05:30 committed by GitHub
commit af0f0ca526
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 15 deletions

View File

@ -315,13 +315,13 @@ flowchart LR
### Dotted link ### Dotted link
```mermaid-example ```mermaid-example
flowchart LR; flowchart LR
A-.->B; A-.->B
``` ```
```mermaid ```mermaid
flowchart LR; flowchart LR
A-.->B; A-.->B
``` ```
### Dotted link with text ### Dotted link with text
@ -866,13 +866,13 @@ A shorter form of adding a class is to attach the classname to the node using th
```mermaid-example ```mermaid-example
flowchart LR flowchart LR
A:::someclass --> B A:::someclass --> B
classDef someclass fill:#f96; classDef someclass fill:#f96
``` ```
```mermaid ```mermaid
flowchart LR flowchart LR
A:::someclass --> B A:::someclass --> B
classDef someclass fill:#f96; classDef someclass fill:#f96
``` ```
### Css classes ### Css classes
@ -895,14 +895,14 @@ below:
**Example definition** **Example definition**
```mermaid-example ```mermaid-example
flowchart LR; flowchart LR
A-->B[AAA<span>BBB</span>] A-->B[AAA<span>BBB</span>]
B-->D B-->D
class A cssClass class A cssClass
``` ```
```mermaid ```mermaid
flowchart LR; flowchart LR
A-->B[AAA<span>BBB</span>] A-->B[AAA<span>BBB</span>]
B-->D B-->D
class A cssClass class A cssClass
@ -924,7 +924,7 @@ The icons are accessed via the syntax fa:#icon class name#.
flowchart TD flowchart TD
B["fab:fa-twitter for peace"] B["fab:fa-twitter for peace"]
B-->C[fa:fa-ban forbidden] B-->C[fa:fa-ban forbidden]
B-->D(fa:fa-spinner); B-->D(fa:fa-spinner)
B-->E(A fa:fa-camera-retro perhaps?) B-->E(A fa:fa-camera-retro perhaps?)
``` ```
@ -932,7 +932,7 @@ flowchart TD
flowchart TD flowchart TD
B["fab:fa-twitter for peace"] B["fab:fa-twitter for peace"]
B-->C[fa:fa-ban forbidden] B-->C[fa:fa-ban forbidden]
B-->D(fa:fa-spinner); B-->D(fa:fa-spinner)
B-->E(A fa:fa-camera-retro perhaps?) B-->E(A fa:fa-camera-retro perhaps?)
``` ```

View File

@ -198,8 +198,8 @@ flowchart LR
### Dotted link ### Dotted link
```mermaid-example ```mermaid-example
flowchart LR; flowchart LR
A-.->B; A-.->B
``` ```
### Dotted link with text ### Dotted link with text
@ -587,7 +587,7 @@ A shorter form of adding a class is to attach the classname to the node using th
```mermaid-example ```mermaid-example
flowchart LR flowchart LR
A:::someclass --> B A:::someclass --> B
classDef someclass fill:#f96; classDef someclass fill:#f96
``` ```
### Css classes ### Css classes
@ -610,7 +610,7 @@ below:
**Example definition** **Example definition**
```mermaid-example ```mermaid-example
flowchart LR; flowchart LR
A-->B[AAA<span>BBB</span>] A-->B[AAA<span>BBB</span>]
B-->D B-->D
class A cssClass class A cssClass
@ -634,7 +634,7 @@ The icons are accessed via the syntax fa:#icon class name#.
flowchart TD flowchart TD
B["fab:fa-twitter for peace"] B["fab:fa-twitter for peace"]
B-->C[fa:fa-ban forbidden] B-->C[fa:fa-ban forbidden]
B-->D(fa:fa-spinner); B-->D(fa:fa-spinner)
B-->E(A fa:fa-camera-retro perhaps?) B-->E(A fa:fa-camera-retro perhaps?)
``` ```