From bd40d567e068e0b523b4af7a65604b9eec50005f Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Tue, 13 Jan 2026 12:18:39 -0500 Subject: [PATCH] [libc++] Fix backslash substitution in RST synchronization scripts --- libcxx/utils/conformance | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxx/utils/conformance b/libcxx/utils/conformance index 2b1d59a45ae5..20750204fce5 100755 --- a/libcxx/utils/conformance +++ b/libcxx/utils/conformance @@ -54,7 +54,7 @@ def rst_to_markdown(text: str) -> str: def markdown_to_rst(text: str) -> str: """Best effort conversion from Markdown to RST assuming a single line of text.""" - return text.replace('`', '``') + return re.sub(r'(?