packages feed

tagsoup-selection 0.1.0.0 → 0.1.0.1

raw patch · 4 files changed

+10/−1 lines, 4 files

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Changes +## 0.1.0.1++* Fixed error on newer GHC versions when using type synonyms in instances+ ## 0.1.0.0  Initial version
+ README.md view
@@ -0,0 +1,3 @@+# tagsoup-selection++This package provides functions for parsing CSS3 selectors, a zipper for TagSoup's TagTree type, and functions for easily selecting subtrees from tag trees, e.g. by using CSS selectors.
src/Text/StringLike/Matchable.hs view
@@ -1,4 +1,5 @@ {-# LANGUAGE TypeSynonymInstances #-}+{-# LANGUAGE FlexibleInstances #-} module Text.StringLike.Matchable (     Matchable (..), 
tagsoup-selection.cabal view
@@ -1,5 +1,5 @@ Name:                   tagsoup-selection-Version:                0.1.0.0+Version:                0.1.0.1 Synopsis:               Selecting subtrees from TagSoup's TagTrees using CSS selectors Description:            This package provides functions for parsing CSS3 selectors, a zipper for                         TagSoup's TagTree type, and functions for easily selecting subtrees from@@ -20,6 +20,7 @@ Cabal-Version:          >= 1.8  Extra-source-files:     CHANGELOG.md+                        README.md  Library   Hs-Source-Dirs:       src