hi.
I have the following problem when I copy this link to my website:
https://www.barks.jp/news/?id=1000203176
the markdown being processed truncates the link after "news/" and the generated html <a> tag gets an id attribute with '1000203176'.
resulting html:
<a href="https://www.barks.jp/news" id="1000203176">...</a>
I have tried to escape characters of the url, but it did not help.
I could eventually solve this issue by using html instead of markdown in my .md file, but I would still like to understand why this is happening..