Emoji: Bypass legacy emoji normalization (#36377)

This commit is contained in:
Echo 2025-10-07 17:21:50 +02:00 committed by GitHub
commit 3c9b828c71
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 16 additions and 20 deletions

View file

@ -70,7 +70,7 @@ function loaded() {
};
document.querySelectorAll('.emojify').forEach((content) => {
content.innerHTML = emojify(content.innerHTML);
content.innerHTML = emojify(content.innerHTML, {}, true); // Force emojify as public doesn't load the new emoji system.
});
document