Hi Yotam,
> On 13. Jul 2025, at 13:01, Yotam Leibovici <
yotam.l...@gmail.com> wrote:
>
> There seems to be an issue with the ZWNJ character (Unicode U+200C) — it's currently displayed as a diamond with a question mark inside, instead of being invisible.
Some browsers do not count characters that are invisible (no width) which causes problems when we want to render annotations.
Therefore, INCEpTION replaces many characters with a non-breaking space. So ZWNJ should show up as a space in most cases.
The brat view is bit different, because the replacement character there is configurable and defaults to \uFFFD.
You can change this by adding a line like
ui.brat.white-space-replacement-character=X
To your settings.properties file where X should be the character you want to use. Note it has to be a character that browsers will count as a visible character, e.g.
ui.brat.white-space-replacement-character=\u00A0
If you believe the default replacement character for the brat view should be changed, please open a feature request
and explain why you believe the default should be changed.
https://github.com/inception-project/inception/issues/new/choose
-- Richard