mirror of
https://github.com/JefferyHcool/BiliNote.git
synced 2026-05-07 07:22:43 +08:00
4 lines
107 B
Python
4 lines
107 B
Python
import codecs
|
|
|
|
def fix_markdown(markdown: str) -> str:
|
|
return codecs.decode(markdown, 'unicode_escape') |