Merge branch 'fix' into alpha

This commit is contained in:
guozhigq
2023-09-29 23:14:10 +08:00
4 changed files with 43 additions and 11 deletions

View File

@ -19,6 +19,10 @@ class Em {
return regCate(matchStr);
}, onNonMatch: (String str) {
if (str != '') {
str = str
.replaceAll('>', '>')
.replaceAll('"', '"')
.replaceAll(''', "'");
Map map = {'type': 'text', 'text': str};
res.add(map);
}