diff --git a/src/lib/export/rss.cpp b/src/lib/export/rss.cpp index fc2f382..ac82bd8 100644 --- a/src/lib/export/rss.cpp +++ b/src/lib/export/rss.cpp @@ -58,7 +58,6 @@ namespace remwharead writer.endElement("", "", "title"); writer.startElement("", "", "link"); - // FIXME: There has to be an URL here. writer.endElement("", "", "link"); writer.startElement("", "", "description"); @@ -115,11 +114,11 @@ namespace remwharead string description = entry.description; if (!description.empty()) { - description += "\n\n"; + description = "

" + description + "

"; } if (!entry.tags.empty()) { - description += "Tags: "; + description += "

Tags: "; for (const string &tag : entry.tags) { description += tag; @@ -128,10 +127,13 @@ namespace remwharead description += ", "; } } + description += "

"; } if (!entry.archive_uri.empty()) { - description += "\n\nArchived version: " + entry.archive_uri; + description += "

Archived version: " + "" + + entry.archive_uri + ""; } writer.startElement("", "", "description"); writer.characters(description);