mirror of https://gitlab.com/bashrc2/epicyon
Remove backticks
parent
5adec255e7
commit
1db0bbe6e5
|
@ -190,6 +190,7 @@ def _markdown_replace_links(markdown: str) -> str:
|
||||||
link_text = sections_links[ctr - 1].split('[')[-1]
|
link_text = sections_links[ctr - 1].split('[')[-1]
|
||||||
link_url = link_section.split(')')[0]
|
link_url = link_section.split(')')[0]
|
||||||
replace_str = '[' + link_text + '](' + link_url + ')'
|
replace_str = '[' + link_text + '](' + link_url + ')'
|
||||||
|
link_text = link_text.replace('`', '')
|
||||||
if '!' + replace_str in section_text:
|
if '!' + replace_str in section_text:
|
||||||
html_link = \
|
html_link = \
|
||||||
'<img class="markdownImage" src="' + \
|
'<img class="markdownImage" src="' + \
|
||||||
|
|
Loading…
Reference in New Issue