fast-tagsoup 1.0.0 → 1.0.1
raw patch · 2 files changed
+4/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Text/HTML/TagSoup/Fast.hs +3/−1
- fast-tagsoup.cabal +1/−1
Text/HTML/TagSoup/Fast.hs view
@@ -339,7 +339,9 @@ renderTags' escape concat = go [] where go acc [] = concat $ reverse acc- go acc (TagOpen t as : TagClose tc : ts) | t == tc =+ go acc (TagOpen t as : TagClose tc : ts)+ | t == tc && t /= "iframe" =+ -- browsers do not like <iframe/> go ("/>" : renderAtts (reverse as) (t : "<" : acc)) ts go acc (TagOpen t as : ts) = go (">" : renderAtts (reverse as) (t : "<" : acc)) ts
fast-tagsoup.cabal view
@@ -1,6 +1,6 @@ cabal-version: >= 1.6 name: fast-tagsoup-version: 1.0.0+version: 1.0.1 copyright: Vladimir Shabanov 2011-2012 author: Vladimir Shabanov <vshabanoff@gmail.com> maintainer: Vladimir Shabanov <vshabanoff@gmail.com>