diff --git a/searx/static/themes/simple/xsl/rss.xsl b/searx/static/themes/simple/xsl/rss.xsl
index a8d9225f5..7de7f8037 100644
--- a/searx/static/themes/simple/xsl/rss.xsl
+++ b/searx/static/themes/simple/xsl/rss.xsl
@@ -1,59 +1,39 @@
-
-
-
-
- RSS Feed
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+ RSS Feed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
diff --git a/searx/templates/simple/opensearch_response_rss.xml b/searx/templates/simple/opensearch_response_rss.xml
index b827bae85..574f32e69 100644
--- a/searx/templates/simple/opensearch_response_rss.xml
+++ b/searx/templates/simple/opensearch_response_rss.xml
@@ -21,34 +21,11 @@
{% for r in results %}
-
{{ r.title }}
+ result
{{ r.url }}
{{ r.content }}
{% if r.pubdate %}{{ r.pubdate }}{% endif %}
{% endfor %}
- {% if answers %}
- {% for a in answers %}
- -
- {{ a }}
- answer
-
- {% endfor %}
- {% endif %}
- {% if corrections %}
- {% for a in corrections %}
- -
- {{ a }}
- correction
-
- {% endfor %}
- {% endif %}
- {% if suggestions %}
- {% for a in suggestions %}
- -
- {{ a }}
- suggestion
-
- {% endfor %}
- {% endif %}
diff --git a/searx/webapp.py b/searx/webapp.py
index 19c477794..21f678ce5 100755
--- a/searx/webapp.py
+++ b/searx/webapp.py
@@ -740,9 +740,6 @@ def search():
response_rss = render(
'opensearch_response_rss.xml',
results=results,
- answers=result_container.answers,
- corrections=result_container.corrections,
- suggestions=result_container.suggestions,
q=request.form['q'],
number_of_results=result_container.number_of_results,
)