diff --git a/docs/build_docs.py b/docs/build_docs.py index a6fd39b0..181455c3 100644 --- a/docs/build_docs.py +++ b/docs/build_docs.py @@ -193,7 +193,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|$)|[\'")])', + r'(https?://[^\s()<>]+(?:\.[^\s()<>]+)+)(?\1', str(text_node), )