diff --git a/Main.hs b/Main.hs
--- a/Main.hs
+++ b/Main.hs
@@ -42,8 +42,8 @@
             [(";" ++ "[" ++ url ++ " "++  title ++ "]")
             ,(":" ++ synopsis)]
    where
-     Just title    = rssItemTitle $ r
-     Just url      = rssItemLink $ r
+     title    = filter (/='\n') $ fromJust $ rssItemTitle $ r
+     Just url = rssItemLink $ r
 
      -- May not be the actual synopsis. Parse the .cabal file instead?
      synopsis = last [ e | TagText e <- parseTags
diff --git a/hackage2hwn.cabal b/hackage2hwn.cabal
--- a/hackage2hwn.cabal
+++ b/hackage2hwn.cabal
@@ -1,5 +1,5 @@
 Name:                hackage2hwn
-Version:             0.4.1
+Version:             0.5
 homepage:            http://code.haskell.org/~dons/code/hackage2hwn
 Synopsis:            Convert Hackage RSS feeds to wiki format for publishing on Haskell.org
 Description:         Convert Hackage RSS feeds to wiki format for publishing on Haskell.org
@@ -10,6 +10,7 @@
 Maintainer:          <dons@galois.com>
 Build-Depends:       base, tagsoup, download, feed
 Build-type:          Simple
+extra-source-files:  LICENSE
 
 Executable:          hackage2hwn
 Main-is:             Main.hs
