>.< should not be rendered as quote (bugfix). (Daniel Gultsch)

This commit is contained in:
Arne 2021-10-15 23:27:06 +02:00
parent 7e0aacb178
commit 2297be0d32

View file

@ -416,6 +416,7 @@ public class UIHelper {
final char first = body.charAt(pos + 1);
return first == ';'
|| first == ':'
|| first == '.' // do not quote >.< (but >>.<)
|| closingBeforeWhitespace(body, pos + 1);
}
}