-
-
Notifications
You must be signed in to change notification settings - Fork 543
Closed
Labels
area: backendThis issue involves Python, Django or dependency (eg. database)This issue involves Python, Django or dependency (eg. database)feature: parserParser converts markdown/bbcode strings into other formsParser converts markdown/bbcode strings into other forms
Milestone
Description
\n|$
at the end of pattern will make regex match and consume linebreak at the end of, it preventing ^|\n
at the beginning of next pattern to match with it. I need to check all those blocks patterns and make them focus on matching prefix linebreaks only and use look-ahead ((?=\n|$)
) at the end.
Metadata
Metadata
Assignees
Labels
area: backendThis issue involves Python, Django or dependency (eg. database)This issue involves Python, Django or dependency (eg. database)feature: parserParser converts markdown/bbcode strings into other formsParser converts markdown/bbcode strings into other forms