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

This commit is contained in:
Millesimus 2021-09-08 15:25:47 +02:00 committed by Daniel Gultsch
parent 5a9777f7f1
commit dfeeaff74c
1 changed files with 1 additions and 0 deletions

View File

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