From ef28f1078c691e84569ee74ec3f3e0177a041347 Mon Sep 17 00:00:00 2001 From: Francesco Mattioli Date: Fri, 18 Oct 2024 12:37:02 +0200 Subject: [PATCH] Fixed build docs regex security (#17012) --- docs/build_docs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build_docs.py b/docs/build_docs.py index 483a2dd051..281a85f513 100644 --- a/docs/build_docs.py +++ b/docs/build_docs.py @@ -199,7 +199,7 @@ def convert_plaintext_links_to_html(content): for text_node in paragraph.find_all(string=True, recursive=False): if text_node.parent.name not in {"a", "code"}: # Ignore links and code blocks new_text = re.sub( - r'(https?://[^\s()<>]+(?:\.[^\s()<>]+)+)(?\1', str(text_node), )