mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-15 11:21:42 +00:00
[Glitch] Skip VS15 (Emoji textual presentation)
Port a060beee72
to glitch-soc
This commit is contained in:
parent
8e862ecf8d
commit
b3fdd166e8
|
@ -62,6 +62,10 @@ const emojify = (str, customEmojis = {}) => {
|
||||||
const title = shortCode ? `:${shortCode}:` : '';
|
const title = shortCode ? `:${shortCode}:` : '';
|
||||||
replacement = `<img draggable="false" class="emojione" alt="${match}" title="${title}" src="${assetHost}/emoji/${filename}.svg" />`;
|
replacement = `<img draggable="false" class="emojione" alt="${match}" title="${title}" src="${assetHost}/emoji/${filename}.svg" />`;
|
||||||
rend = i + match.length;
|
rend = i + match.length;
|
||||||
|
// If the matched character was followed by VS15 (for selecting text presentation), skip it.
|
||||||
|
if (str.codePointAt(rend) === 65038) {
|
||||||
|
rend += 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
rtn += str.slice(0, i) + replacement;
|
rtn += str.slice(0, i) + replacement;
|
||||||
str = str.slice(rend);
|
str = str.slice(rend);
|
||||||
|
|
Loading…
Reference in a new issue