2023-11-15 17:17:50 +08:00
|
|
|
# encoding: utf-8
|
|
|
|
'''
|
|
|
|
@author: 温进
|
|
|
|
@file: postprocess.py
|
|
|
|
@time: 2023/11/9 下午4:01
|
|
|
|
@desc:
|
|
|
|
'''
|
2023-12-07 20:17:21 +08:00
|
|
|
import html
|
2023-11-15 17:17:50 +08:00
|
|
|
|
|
|
|
def replace_lt_gt(text: str):
|
2023-12-07 20:17:21 +08:00
|
|
|
text = html.unescape(text)
|
2023-11-15 17:17:50 +08:00
|
|
|
return text
|