Markdown replacements

main
Bob Mottram 2022-06-27 13:45:48 +01:00
parent 8585152321
commit ef6f32cc22
1 changed files with 3 additions and 0 deletions

View File

@ -17,6 +17,7 @@ def _markdown_emphasis_html(markdown: str) -> str:
'**.': '</b>.', '**.': '</b>.',
'**:': '</b>:', '**:': '</b>:',
'**;': '</b>;', '**;': '</b>;',
'?**': '?</b>',
'**,': '</b>,', '**,': '</b>,',
'**\n': '</b>\n', '**\n': '</b>\n',
'>**': '><b>', '>**': '><b>',
@ -25,6 +26,7 @@ def _markdown_emphasis_html(markdown: str) -> str:
'*<': '</i><', '*<': '</i><',
' *': ' <i>', ' *': ' <i>',
'* ': '</i> ', '* ': '</i> ',
'?*': '?</i>',
'*.': '</i>.', '*.': '</i>.',
'*:': '</i>:', '*:': '</i>:',
'*;': '</i>;', '*;': '</i>;',
@ -41,6 +43,7 @@ def _markdown_emphasis_html(markdown: str) -> str:
'`.': '</em>.', '`.': '</em>.',
'`:': '</em>:', '`:': '</em>:',
'`;': '</em>;', '`;': '</em>;',
'`,': '</em>;',
'`\n': '</em>\n', '`\n': '</em>\n',
'` ': '</em> ' '` ': '</em> '
} }