tagsoup 0.12.3 → 0.12.4
raw patch · 3 files changed
+6/−1 lines, 3 files
Files
- TagSoup/Test.hs +2/−0
- Text/HTML/TagSoup.hs +3/−0
- tagsoup.cabal +1/−1
TagSoup/Test.hs view
@@ -218,6 +218,8 @@ (TagOpen "test" [] ~== "<test>") === True (TagOpen "test" [] ~== "<soup>") === False (TagOpen "test" [] ~/= "<soup>") === True+ (TagComment "foo" ~== "<!--foo-->") === True+ (TagComment "bar" ~== "<!--bar-->") === True warnTests :: Test ()
Text/HTML/TagSoup.hs view
@@ -91,6 +91,9 @@ g (name,val) | strNull name = val `elem` map snd ys | strNull val = name `elem` map fst ys g nameval = nameval `elem` ys+ f (TagComment x) (TagComment y) = strNull x || x == y+ f (TagWarning x) (TagWarning y) = strNull x || x == y+ f (TagPosition x1 x2) (TagPosition y1 y2) = x1 == y1 && x2 == y2 f _ _ = False -- | Negation of '~=='
tagsoup.cabal view
@@ -1,6 +1,6 @@ cabal-version: >= 1.6 name: tagsoup-version: 0.12.3+version: 0.12.4 copyright: Neil Mitchell 2006-2011 author: Neil Mitchell <ndmitchell@gmail.com> maintainer: Neil Mitchell <ndmitchell@gmail.com>