Remove backticks

main
Bob Mottram 2022-06-28 22:37:29 +01:00
parent 5adec255e7
commit 1db0bbe6e5
1 changed files with 1 additions and 0 deletions

View File

@ -190,6 +190,7 @@ def _markdown_replace_links(markdown: str) -> str:
link_text = sections_links[ctr - 1].split('[')[-1]
link_url = link_section.split(')')[0]
replace_str = '[' + link_text + '](' + link_url + ')'
link_text = link_text.replace('`', '')
if '!' + replace_str in section_text:
html_link = \
'<img class="markdownImage" src="' + \