We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Formatting inside link descriptions does not parse correctly if the formatting is at the beginning or end of the link description.
irb(main):017:0> Orgmode::Parser.new("[[a][~a~]]").to_html => "<p><a href=\"a\">~a~</a></p>\n"
The output should be "<p><a href=\"a\"><code>a</code></a></p>\n".
"<p><a href=\"a\"><code>a</code></a></p>\n"
The text was updated successfully, but these errors were encountered:
Add \[ and \] to emphasis regexp to fix wallyqs#85, emphasis inside l…
e91ead2
…inks.
Inlcude brackets to emphasis regexp. Fix wallyqs#85
07c24bf
91b8c8b
1ca685c
No branches or pull requests
Formatting inside link descriptions does not parse correctly if the formatting is at the beginning or end of the link description.
Example
The output should be
"<p><a href=\"a\"><code>a</code></a></p>\n"
.The text was updated successfully, but these errors were encountered: