From: jmtd Date: Fri, 5 Nov 2021 09:43:55 +0000 (-0400) Subject: discount markdown can't handle URIs with parens e.g. mediawiki style X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/975cbe318119e0d600dc1b0957623d211687ade1 discount markdown can't handle URIs with parens e.g. mediawiki style --- diff --git a/doc/bugs/mdwn:_URIs_with_parentheses_are_not_rendered_properly___40__with_at_least_discount__41__.mdwn b/doc/bugs/mdwn:_URIs_with_parentheses_are_not_rendered_properly___40__with_at_least_discount__41__.mdwn new file mode 100644 index 000000000..4e4b3add2 --- /dev/null +++ b/doc/bugs/mdwn:_URIs_with_parentheses_are_not_rendered_properly___40__with_at_least_discount__41__.mdwn @@ -0,0 +1,18 @@ +With Ikiwiki, mdwn, and discount configured, the following syntax + + [some link with parens in it](http://foo.com/parens(yeah)) + +Has a broken URI (missing the closing parenthesis) and renders the second parenthesis outside of the link. + +Here's it live on ikiwiki.info: [some link with parens in it](http://foo.com/parens(yeah)) + +Bug present in at least discount 2.2.6 and 2.2.7 and merely exposed by IkiWiki. Note that upstream +consider this to be not-a-bug/"behavior follows specs": https://github.com/Orc/discount/issues/241 + +The following alternative markdown implementations get this right: + + * libtext-markdown-perl 1.000031 (debian -3) + * multimarkdown 1.000035 (debian -2) + + +*— [[Jon]], 2021-11-05*