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.
11 lines
270 B
Python
11 lines
270 B
Python
1 month ago
|
|
||
|
def ocr_escape_special_markdown_char(content):
|
||
|
"""
|
||
|
转义正文里对markdown语法有特殊意义的字符
|
||
|
"""
|
||
|
special_chars = ["*", "`", "~", "$"]
|
||
|
for char in special_chars:
|
||
|
content = content.replace(char, "\\" + char)
|
||
|
|
||
|
return content
|