mod: 标题转义补充

This commit is contained in:
guozhigq
2024-03-27 23:27:53 +08:00
parent 0a416c95bc
commit 463ee1d5b5

View File

@ -27,7 +27,8 @@ class Em {
.replaceAll('"', '"')
.replaceAll(''', "'")
.replaceAll(' ', " ")
.replaceAll('&', "&");
.replaceAll('&', "&")
.replaceAll(''', "'");
Map map = {'type': 'text', 'text': str};
res.add(map);
}