css-text-0.1.2.2: CSS parser and renderer.

Safe HaskellSafe
LanguageHaskell98

Text.CSS.Parse

Description

Parse CSS with parseNestedBlocks and render it with renderNestedBlock

Synopsis

Documentation

data NestedBlock #

Constructors

NestedBlock Text [NestedBlock]

for example a media query

LeafBlock CssBlock 

parseNestedBlocks :: Text -> Either String [NestedBlock] #

The preferred parser, will capture media queries

parseBlocks :: Text -> Either String [CssBlock] #

The original parser of basic CSS, but throws out media queries

parseBlock :: Text -> Either String CssBlock #

attrParser :: Parser (Text, Text) #

attrsParser :: Parser [(Text, Text)] #

blockParser :: Parser (Text, [(Text, Text)]) #

blocksParser :: Parser [(Text, [(Text, Text)])] #

parseAttr :: Text -> Either String (Text, Text) #

parseAttrs :: Text -> Either String [(Text, Text)] #