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
Input:
***test*** ***
Output (second line will be rendered as a literal ***):
***
<p><strong><em>test</em></strong> ***</p>
Expected output according to Markdown.pl:
<p><strong><em>test</em></strong> </p> <hr />
The same problem occurs with --- and ___ as HR.
---
___
I think it can be fixed by changing RE in HRProcessor:
RE
HRProcessor
497c497 < RE = r'^[ ]{0,3}((-+[ ]{0,2}){3,}|(_+[ ]{0,2}){3,}|(\*+[ ]{0,2}){3,})[ ]*' --- > RE = r'^[ ]{0,3}((-+[ ]{0,2}){3,}|(_+[ ]{0,2}){3,}|(\*+[ ]{0,2}){3,})[ ]*$'
The text was updated successfully, but these errors were encountered:
Here's what Babelmark shows. Looks like a bug.
Sorry, something went wrong.
Fix HR which follows stromg em.
490989d
Fixes Python-Markdown#897.
Fix HR which follows strong em.
e660fb3
be7ba7b
Fixes #897.
Successfully merging a pull request may close this issue.
Input:
Output (second line will be rendered as a literal
***
):Expected output according to Markdown.pl:
The same problem occurs with
---
and___
as HR.I think it can be fixed by changing
RE
inHRProcessor
:The text was updated successfully, but these errors were encountered: