Escape the pipes in the syntax table

This commit is contained in:
Adrian Hall 2020-04-10 11:40:39 +01:00
parent 9f8a0234aa
commit 91b64798bb

View File

@ -61,10 +61,10 @@ Cardinality is a property that describes how many elements of another entity can
| Value (left) | Value (right) | Meaning |
|:------------:|:-------------:|--------------------------------------------------------|
| `|o` | `o|` | Zero or one |
| `||` | `||` | Exactly one |
| `\|o` | `o\|` | Zero or one |
| `\|\|` | `\|\|` | Exactly one |
| `}o` | `o{` | Zero or more (no upper limit) |
| `}|` | `|{` | One or more (no upper limit) |
| `}\|` | `\|{ | One or more (no upper limit) |
### Identification