Closed max-arnold closed 2 months ago
The & character is escaped into & by MyST and that breaks query parameters https://github.com/executablebooks/MyST-Parser/issues/760
&
&
A possible workaround is to use <a href="...">...</a> for those links
<a href="...">...</a>
A bigger question is how to fix that for future links that might be added
The
&
character is escaped into&
by MyST and that breaks query parameters https://github.com/executablebooks/MyST-Parser/issues/760A possible workaround is to use
<a href="...">...</a>
for those linksA bigger question is how to fix that for future links that might be added