@@ -899,5 +899,6 @@ def remove_markdown_symbol(text: str): | |||||
# 去除列表编号等 | # 去除列表编号等 | ||||
#text = re.sub(r'^\d+\.\s*', '', text, flags=re.MULTILINE) | #text = re.sub(r'^\d+\.\s*', '', text, flags=re.MULTILINE) | ||||
text = re.sub('[\\\`\*\_\[\]\#\+\-\!\>]', '', text) | |||||
print(text) | print(text) | ||||
return text | return text |