diff --git a/geek.cabal b/geek.cabal
--- a/geek.cabal
+++ b/geek.cabal
@@ -1,5 +1,5 @@
 Name:                 geek
-Version:              1.0.0.4
+Version:              1.0.0.5
 Build-type:           Simple
 Synopsis:             Geek blog engine
 Description:          A dynamic blog engine, customizable with standard web technology, i.e. HTML, CSS and Javascript (JSON)
diff --git a/src/Web/Geek/Application.hs b/src/Web/Geek/Application.hs
--- a/src/Web/Geek/Application.hs
+++ b/src/Web/Geek/Application.hs
@@ -252,7 +252,7 @@
       
         let _posts_filtered_by_tag_and_query = filter_posts_by_tag _posts _maybe_tag
       
-        text - rss _config _posts_filtered_by_tag_and_query _maybe_tag
+        text - rss _config (_posts_filtered_by_tag_and_query.take (_config.number_of_posts_per_feed)) _maybe_tag
         
         modify - set_content_type "text/xml"
       
diff --git a/src/Web/Geek/RSS.hs b/src/Web/Geek/RSS.hs
--- a/src/Web/Geek/RSS.hs
+++ b/src/Web/Geek/RSS.hs
@@ -56,7 +56,6 @@
 
 rss :: Geek.Config -> [Geek.Post] -> Maybe Text -> ByteString
 rss _config _posts _mabye_tag = l2s - render_bytestring - do
-  
   let drop_tail_slash xs = xs.reverse.dropWhile (is '/').reverse
   
       site_link = 
