Fix of broken tests

This commit is contained in:
knsv
2015-10-04 19:30:53 +02:00
parent c5d41c5a21
commit 122274bf52
9 changed files with 879 additions and 809 deletions

View File

@@ -212,7 +212,23 @@ graph LR
id1["This is the (text) in the box"]
```
### Another possibility is to use the entity codes
### Entity codes to escape characters
It is possible to escape characters using the syntax examplified here.
The flowchart defined by the following code:
```
graph LR
A["A double quote:#quot;"] -->B["A dec char:#9829;"]
```
This would render to the diagram below:
```mermaid
graph LR
A["A double quote:#quot;"] -->B["A dec char:#9829;"]
```
## Subgraphs
```