about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--Rakefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index b214af3..0af6360 100644
--- a/Rakefile
+++ b/Rakefile
@@ -51,9 +51,13 @@ task :news_atom do
           x.email tag[:tagger_email]
         }
         url = "#{cgit_url}/tag/?id=#{tag[:tag]}"
-        x.link :rel => "alternate", :type => "text/html", :href =>url
+        x.link :rel => "alternate", :type => "text/html", :href => url
         x.id url
-        x.content(:type =>:xhtml) { x.pre tag[:body] }
+        x.content(:type =>:xhtml) do
+          x.div(:xmlns => 'http://www.w3.org/1999/xhtml') do
+            x.pre tag[:body]
+          end
+        end
       end
     end
   end