From 114344f950f8e5478dbab0fec2ad3c15cc0809cb Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Mon, 6 Jun 2022 10:12:54 +0200 Subject: [PATCH] Re #653 fixing RSS feed HTML content formatting --- changedetectionio/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/changedetectionio/__init__.py b/changedetectionio/__init__.py index 6cd12eb9..cc79e2e5 100644 --- a/changedetectionio/__init__.py +++ b/changedetectionio/__init__.py @@ -351,7 +351,9 @@ def changedetection_app(config=None, datastore_o=None): latest_fname = watch.history[dates[-1]] html_diff = diff.render_diff(prev_fname, latest_fname, include_equal=False, line_feed_sep="
") - fe.description(description="

{}

{}".format(watch_title, html_diff)) + fe.description(description="

{}

{}" + "]]>".format(watch_title, html_diff)) fe.guid(guid, permalink=False) dt = datetime.datetime.fromtimestamp(int(watch.newest_history_key))