diff --git a/markdown.py b/markdown.py index 24908768b..3d1a9dc64 100644 --- a/markdown.py +++ b/markdown.py @@ -17,6 +17,7 @@ def _markdown_emphasis_html(markdown: str) -> str: '**.': '.', '**:': ':', '**;': ';', + '?**': '?', '**,': ',', '**\n': '\n', '>**': '>', @@ -25,6 +26,7 @@ def _markdown_emphasis_html(markdown: str) -> str: '*<': '<', ' *': ' ', '* ': ' ', + '?*': '?', '*.': '.', '*:': ':', '*;': ';', @@ -41,6 +43,7 @@ def _markdown_emphasis_html(markdown: str) -> str: '`.': '.', '`:': ':', '`;': ';', + '`,': ';', '`\n': '\n', '` ': ' ' }