-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | A CSS preprocessor -- -- CleverCSS is a CSS preprocessing library that allows defining -- variables and nesting selectors so that you don't need to Repeat -- Yourself. @package clevercss @version 0.2.4 -- | Main parsing and evaluation module for CleverCSS. module Text.CSS.CleverCSS -- | Convert CleverCSS source to CSS. For documentation of available syntax -- and command line use, see -- http://sandbox.pocoo.org/clevercss-hs/. cleverCSSConvert :: SourceName -> String -> [(String, String)] -> IO (Either String String) instance Eq Expr instance Eq Item instance Eq Topl instance Eq AssignType instance Show EvalError instance Error EvalError instance Show Expr instance Show Item instance Show Topl instance Applicative (GenParser toc st)