-
Notifications
You must be signed in to change notification settings - Fork 893
Closed
Labels
bugBug report.Bug report.confirmedConfirmed bug report or approved feature request.Confirmed bug report or approved feature request.coreRelated to the core parser code.Related to the core parser code.
Description
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:
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,})[ ]*$'Metadata
Metadata
Assignees
Labels
bugBug report.Bug report.confirmedConfirmed bug report or approved feature request.Confirmed bug report or approved feature request.coreRelated to the core parser code.Related to the core parser code.