diff --git a/src/markup.c b/src/markup.c index 6ff1014..05ef1ff 100644 --- a/src/markup.c +++ b/src/markup.c @@ -28,9 +28,9 @@ static char *markup_unquote(char *str) str = string_replace_all(""", "\"", str); str = string_replace_all("'", "'", str); - str = string_replace_all("&", "&", str); str = string_replace_all("<", "<", str); str = string_replace_all(">", ">", str); + str = string_replace_all("&", "&", str); return str; }