diff --git a/markdown.py b/markdown.py index 310be655e..c9ad3896d 100644 --- a/markdown.py +++ b/markdown.py @@ -53,6 +53,7 @@ def _markdown_emphasis_html(markdown: str) -> str: '\n**': '\n', '**,': ',', '**\n': '\n', + '(**': '()', '**)': ')', '>**': '>', '**<': '<', @@ -65,9 +66,12 @@ def _markdown_emphasis_html(markdown: str) -> str: '*.': '.', '*:': ':', '*;': ';', + '(*': '()', '*)': ')', '*,': ',', '*\n': '\n', + '(_': '(', + '_)': ')', ' _': ' ', '_ ': ' ', '_.': '.', @@ -79,9 +83,10 @@ def _markdown_emphasis_html(markdown: str) -> str: '`.': '.', '`:': ':', "`'": "'", + "(`": "(", "`)": ")", '`;': ';', - '`,': ';', + '`,': ',', '`\n': '\n', '` ': ' ' }