mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
[Client] Trim text
This commit is contained in:
parent
ef71cf483b
commit
0ec01baa3b
1 changed files with 3 additions and 1 deletions
|
@ -37,7 +37,9 @@ module.exports = (tokens, shouldBreak) => {
|
|||
}
|
||||
}).join('');
|
||||
|
||||
text = text.replace(/<br><code><pre>/g, '<code><pre>').replace(/<\/code><\/pre><br>/g, '</code></pre>');
|
||||
text = text
|
||||
.replace(/ <code>/g, '<code>').replace(/<\/code> /g, '</code>')
|
||||
.replace(/<br><code><pre>/g, '<code><pre>').replace(/<\/code><\/pre><br>/g, '</code></pre>');
|
||||
|
||||
if (me && me.data && me.data.nya) {
|
||||
text = nyaize(text);
|
||||
|
|
Loading…
Add table
Reference in a new issue