mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 15:07:42 +02:00
14 lines
344 B
JavaScript
14 lines
344 B
JavaScript
class Util {
|
|
static cleanXML(str) {
|
|
return str
|
|
.replace(/(<br \/>)/g, '')
|
|
.replace(/(')/g, '\'')
|
|
.replace(/(—)/g, '—')
|
|
.replace(/("|")/g, '"')
|
|
.replace(/(&)/g, '&')
|
|
.replace(/(\[i\]|\[\/i\])/g, '*');
|
|
}
|
|
}
|
|
|
|
module.exports = Util;
|