mod: 标题转义补充

This commit is contained in:
guozhigq
2024-03-27 23:27:53 +08:00
committed by bggRGjQaUbCoE
parent d9b51ddeb5
commit 237d45faf1

View File

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