I’m trying to display a backslash '' with a localizable .tmx file in MappView. Many special characters are working just fine, but the backslash throws an exception “TextSystemError … invalid Element”
I tried different solutions none of them lets me display a single backslash in the Visualisation:
\ → compiler error
"\"→ displays as "\"
\\ → displays as \\
\ → displays as \
^\ → compiler error
& #92; → displays as & #92;
Does anybody know a solution?
Thank you in advance, I appreciate your efforts
Depending on your use case, there is sort of a “workaround”:
Instead of using the backslash (“\”) use the “reverse solidus operator” (“\”) This is just a unicode character, which looks pretty similar to the backslash, but should not cause issues … (Attention: Your font needs to support UniCode …)
Thank you very much! This did the trick. Our original font does not support this character, but the reverse solidus of the fallback font of the browser looks close to identical!