You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
def ocr_escape_special_markdown_char(content):
|
|
"""
|
|
转义正文里对markdown语法有特殊意义的字符
|
|
"""
|
|
special_chars = ["*", "`", "~", "$"]
|
|
for char in special_chars:
|
|
content = content.replace(char, "\\" + char)
|
|
|
|
return content
|