Switch to side-by-side view

--- a/ForgeBlog/forgeblog/command/rssfeeds.py
+++ b/ForgeBlog/forgeblog/command/rssfeeds.py
@@ -44,6 +44,7 @@
         text = re_amp.sub('&', text)
     # avoid accidental 4-space indentations creating code blocks
     if preserve_multiple_spaces:
+        text = text.replace('\t', ' ' * 4)
         text = re_preserve_spaces.sub(' ', text)
     else:
         text = re_leading_spaces.sub('', text)