mirror of
https://github.com/twisterarmy/twister-calm.git
synced 2025-01-12 07:58:05 +00:00
Merge pull request #11 from dryabov/master
fix smiles after html entity
This commit is contained in:
commit
ad65716dcb
@ -81,9 +81,15 @@
|
||||
var rep = $s.replacement
|
||||
.replace(/\{eId\}/g, $s.map[pattern]);
|
||||
|
||||
text = text
|
||||
.replace(new RegExp($t.quote(pattern), "g"), rep)
|
||||
.replace(new RegExp($t.quote(encPattent), "g"), rep);
|
||||
if (pattern[0] === ';') {
|
||||
text = text
|
||||
.replace(new RegExp("(^|\W)" + $t.quote(pattern), "g"), "\\1" + rep)
|
||||
.replace(new RegExp("(^|\W)" + $t.quote(encPattent), "g"), "\\1" + rep);
|
||||
} else {
|
||||
text = text
|
||||
.replace(new RegExp($t.quote(pattern), "g"), rep)
|
||||
.replace(new RegExp($t.quote(encPattent), "g"), rep);
|
||||
}
|
||||
}
|
||||
|
||||
return text;
|
||||
|
@ -269,4 +269,3 @@ function _extractHashtag(s) {
|
||||
function escapeHtmlEntities(str) {
|
||||
return str.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, ''');
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user