Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/markdown2.py
Original file line number Diff line number Diff line change
Expand Up @@ -3620,7 +3620,7 @@ def _convert_single_match(self, match):
return self.converter.convert(match.group(1))

def _convert_double_match(self, match):
return self.converter.convert(match.group(1).replace(r"\n", ''), display="block")
return self.converter.convert(match.group(1).replace("\n", ''), display="block")

def code_placeholder(self, match):
placeholder = f"<!--CODE_BLOCK_{len(self.code_blocks)}-->"
Expand Down