You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nice catch! Our text parser handles character references in regular text, but it does not handle them inside attribute values. The main case of this is the link target. We can at least handle that case.
mojavelinux
added a commit
to mojavelinux/asciidoctor-pdf
that referenced
this issue
May 24, 2016
…sciidoctor#450)
- decode character references (e.g., &) in link URIs
- update terminology for refering to character references
- minor code cleanups
The link
https://github.com?foo=1&bar=2[Hello World]
in the generated PDF goes to:
https://github.com/?foo=1&bar=2
The ampersand in the url is HTML escaped but should not be.
The text was updated successfully, but these errors were encountered: