diff --git a/util/Util.js b/util/Util.js index 68b142c5..519c985f 100644 --- a/util/Util.js +++ b/util/Util.js @@ -292,7 +292,7 @@ module.exports = class Util { clean = decodeHTML(clean); clean = clean .replaceAll('
', '\n') - .replace(/<\/?i>/g, '*') + .replace(/<\/?(i|em)>/g, '*') .replace(/<\/?b>/g, '**') .replace(/~!|!~/g, '||'); if (clean.length > 2000) clean = `${clean.substr(0, 1995)}...`;