mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-10 14:44:18 +00:00
docs: fixes an issue with || in code blocks for MD
This commit is contained in:
parent
73c16e259d
commit
5636f86656
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue