ICU-21688 escape angle bracket in non-HTML content

`<name>` should be escaped with backslash to prevent it from being rendered as a HTML tag
This commit is contained in:
DungSaga 2021-07-22 09:42:02 +07:00 committed by Craig Cornelius
parent dcfdaca46c
commit 60b8ff608e

View file

@ -132,7 +132,7 @@ complete a complete description of the API.
| \\G | ✓ | ✓ | Match if the current position is at the end of the previous match.
| \\h | ✓ | ✓ | Match a Horizontal White Space character. They are characters with Unicode General Category of Space_Separator plus the ASCII tab (\\u0009).
| \\H | ✓ | ✓ | Match a non-Horizontal White Space character.
| \\k<name> | ✓ | | Named Capture Back Reference.
| \\k\<name\> | ✓ | | Named Capture Back Reference.
| \\n | ✓ | ✓ | Match a LINE FEED, \\u000A.
| \\N{UNICODE CHARACTER NAME} | ✓ | ✓ | Match the named character.
| \\p{UNICODE PROPERTY NAME} | ✓ | ✓ | Match any character with the specified Unicode Property.