Kizashi Nagata
51db344a4d
Fix link pattern matching HTML tag characters in URL path ( #10115 )
...
The link_pattern introduced in 2c3b46c1f uses \S (non-whitespace) for
the URL path segment, which also matches <, >, ", and ' characters.
This causes URLs inside HTML-like markup in plain text (e.g.
<a href="https://example.com/ ">click here</a>) to consume the tag
characters as part of the URL.
Replace \S with [^\s<>"'] to exclude HTML tag delimiters and quote
characters from URL path matching, and [^\s.:;,] with [^\s.:;,<>"']
for the path segment terminator.
2026-03-14 11:50:24 +01:00
..
2024-06-05 07:46:51 +02:00
2024-06-05 07:46:51 +02:00
2025-02-23 11:51:27 +01:00
2025-11-22 15:07:31 +01:00
2025-02-23 11:51:27 +01:00
2024-06-05 07:46:51 +02:00
2024-06-05 07:46:51 +02:00
2025-02-23 11:51:27 +01:00
2024-11-05 19:20:14 +01:00
2024-06-05 07:46:51 +02:00
2024-06-05 07:46:51 +02:00
2025-10-08 13:36:57 +02:00
2026-03-10 19:24:25 +01:00
2026-03-10 19:24:25 +01:00
2024-06-13 18:40:29 +02:00
2026-03-10 19:24:25 +01:00
2025-02-23 11:51:27 +01:00
2025-02-23 11:51:27 +01:00
2024-06-05 07:46:51 +02:00
2025-02-23 11:51:27 +01:00
2024-06-05 07:46:51 +02:00
2024-06-05 07:46:51 +02:00
2025-08-09 07:18:15 +02:00
2024-06-05 07:46:51 +02:00
2025-02-16 12:40:37 +01:00
2024-06-05 07:46:51 +02:00
2024-06-05 07:46:51 +02:00
2025-06-19 17:01:09 +02:00
2024-06-05 07:46:51 +02:00
2025-02-02 13:58:39 +01:00
2024-11-20 08:13:16 +01:00
2024-06-05 07:46:51 +02:00
2025-10-05 11:47:16 +02:00
2025-09-14 11:50:31 +02:00
2024-06-05 07:46:51 +02:00
2024-10-28 18:35:44 +01:00
2024-06-05 07:46:51 +02:00
2024-06-05 07:46:51 +02:00
2024-06-05 07:46:51 +02:00
2024-06-05 07:46:51 +02:00
2024-06-05 07:46:51 +02:00
2024-06-05 07:46:51 +02:00
2024-06-05 07:46:51 +02:00
2024-06-05 07:46:51 +02:00
2024-06-05 07:46:51 +02:00
2024-06-05 07:46:51 +02:00
2024-06-05 07:46:51 +02:00
2025-02-23 11:51:27 +01:00
2026-03-14 11:50:24 +01:00
2026-03-14 11:50:24 +01:00
2025-08-15 13:20:24 +02:00
2024-06-05 07:46:51 +02:00
2026-02-08 09:24:29 +01:00
2025-02-16 14:16:35 +01:00
2026-02-08 09:21:34 +01:00