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
Hi, actually I found the problem by converting my notes into markdown format.
I have a snippet like this
[Stochastic_Processes_-_1.4_analysis](Stochastic_Processes_-_1.4_analysis)
or for simplicity
[A-_B](A_-B)
Feed it to kramdown I got the following
$ echo "[A-_B](A_-B)" | kramdown <p>[A-<em>B](A</em>-B)</p>
which should be <p><a href="A_-B">A-_B</a></p>.
<p><a href="A_-B">A-_B</a></p>
I tried all the four, only the last one yields this problem:
[A_-B](A-_B)
[A-_B](A-_B)
[A_-B](A_-B)
It works well in the javascript port of kramdown, i.e., the kramed.
$ echo "[A-_B](A_-B)" | kramed <p><a href="A_-B">A-_B</a></p>
My environment is
Thank you for reading this!
The text was updated successfully, but these errors were encountered:
Thanks for reporting, this is definitely a bug.
Sorry, something went wrong.
c972cc2
gettalong
No branches or pull requests
Hi, actually I found the problem by converting my notes into markdown format.
I have a snippet like this
or for simplicity
Feed it to kramdown I got the following
which should be
<p><a href="A_-B">A-_B</a></p>
.I tried all the four, only the last one yields this problem:
[A_-B](A-_B)
ok[A-_B](A-_B)
ok[A_-B](A_-B)
ok[A-_B](A_-B)
It works well in the javascript port of kramdown, i.e., the kramed.
My environment is
Thank you for reading this!
The text was updated successfully, but these errors were encountered: