Hopefully fix #120

This commit is contained in:
bleakgrey 2019-03-09 13:09:36 +03:00
parent bf2ae9d0bb
commit 43b9f9c561
1 changed files with 11 additions and 11 deletions

View File

@ -12,7 +12,7 @@ public class Tootle.RichLabel : Gtk.Label {
public static string escape_entities (string content) {
return content
.replace ("&", "&")
.replace (" ", " ")
.replace ("'", "'");
}