Roundup Tracker - Issues

Issue 2551104

classification
Markdown autolink not properly rendered when next to punctuation
Type: behavior Severity: normal
Components: Web interface Versions: 2.0.0
process
Status: fixed fixed
:
: rouilj : ced, rouilj
Priority: normal : patch

Created on 2020-11-22 14:48 by ced, last changed 2020-12-20 17:33 by rouilj.

Files
File name Uploaded Description Edit Remove
markdown-link.patch ced, 2020-11-22 14:48
Messages
msg7034 Author: [hidden] (ced) Date: 2020-11-22 14:48
Since the fix of issue2551096, markdown string like

    [label](http://example.com/).

does not render properly because "http://example.com/)." is considered as the URL. As it does not end by ')', the markdown is converted into

    [label](<http://example.com/).>

Here is a patch to tries to find a closing ')' in the matching URL to let markdown link render it.
msg7043 Author: [hidden] (rouilj) Date: 2020-12-20 17:33
committed rev6299:fd0bdcbc68e4.
History
Date User Action Args
2020-12-20 17:33:24rouiljsetstatus: new -> fixed
nosy: + rouilj
messages: + msg7043
priority: normal
assignee: rouilj
resolution: fixed
2020-11-22 14:48:12cedcreate