Replace pipe with html entity

This commit is contained in:
Peter Junos
2022-10-12 14:24:47 +02:00
committed by Peter Junos
parent 6ece575c53
commit 9016e8d607

View File

@@ -71,7 +71,7 @@ of the pattern must be escaped as `\\`.
| `\PN` | The opposite of `\pN` |
| `\P{Greek}` | The opposite of `\p{Greek}` |
| `xy` | `x` followed immediately by `y` |
| `x|y` | either `x` or `y`, preferring `x` |
| `x|y` | either `x` or `y`, preferring `x` |
| `x*` | zero or more `x`, preferring more |
| `x*?` | zero or more `x`, preferring fewer |
| `x+` | one or more `x`, preferring more |