Found Unicode related issues and how to address them:
{{toc numerate=1}}
===Fulltext search===
<[Ideographic languages such as Chinese and Japanese do not have word delimiters. Therefore, [MySQL's] FULLTEXT parser cannot determine where words begin and end in these and other such languages.]>
see ((!/ngramFull-TextParser ngram Full-Text Parser))
===Browser is not showing emojis===
file:missing_font_symbol.jpg
**Solution**:
Its a font issue and you have to install a additional font that supports emoji for chromium-based browsers like Chromium, Google Chrome, Opera etc.
* ##noto-coloremoji-fonts## - Noto Color Emoji font
* ##twemoji-color-font## - Colored Emoji Font From Twitter
Alternatively you can add and load the missing font inside your theme header:
%%(css)
@font-face {
font-family: 'Noto Color Emoji';
src: url(fonts/NotoColorEmoji.ttf);
}
%%
or use it via CDN:
%%(css)
@font-face {
font-family: 'Noto Color Emoji';
src: url(https://gitcdn.xyz/repo/googlefonts/noto-emoji/master/fonts/NotoColorEmoji.ttf);
}
%%
* ((https://www.w3.org/TR/css-fonts-3/ CSS Fonts Module Level 3))
* ((https://github.com/googlefonts/noto-emoji Noto emoji fonts))
===Graphemes are not shown correctly in the browser===
What is happening here?
file:grapheme_display_issue.png
===Missing Font===
file:missing-font.png