docs: fixes an issue with || in code blocks for MD

This commit is contained in:
Clement Tsang 2020-05-02 23:53:25 -04:00 committed by GitHub
parent 73c16e259d
commit 5636f86656
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -264,10 +264,10 @@ Note none of the keywords are case sensitive. Furthermore, if you want to search
#### Supported logical operators
| | | |
| ------------------ | -------------------------------------------- | ------------------------------------------------------- |
| `and, &&, <Space>` | `<CONDITION 1> and/&&/<Space> <CONDITION 2>` | Will require both conditions to be true to match |
| `or, ||` | `<CONDITION 1> or/|| <CONDITION 2>` | Will require at least one condition to be true to match |
| | | |
| ------------------ | -------------------------------------------- | ----------------------------------------------------|
| `and, &&, <Space>` | `<CONDITION 1> and/&&/<Space> <CONDITION 2>` | Requires both conditions to be true to match |
| `or, \|\|` | `<CONDITION 1> or/\|\| <CONDITION 2>` | Requires at least one condition to be true to match |
#### Supported units