From 60b8ff608eaea23c0ad636466d48e813554743cc Mon Sep 17 00:00:00 2001 From: DungSaga Date: Thu, 22 Jul 2021 09:42:02 +0700 Subject: [PATCH] ICU-21688 escape angle bracket in non-HTML content `` should be escaped with backslash to prevent it from being rendered as a HTML tag --- docs/userguide/strings/regexp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/userguide/strings/regexp.md b/docs/userguide/strings/regexp.md index 10f6b794a12..0eaea073221 100644 --- a/docs/userguide/strings/regexp.md +++ b/docs/userguide/strings/regexp.md @@ -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 | ✓ | | Named Capture Back Reference. +| \\k\ | ✓ | | 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.