~alcinnz/haskell-stylist

ref: 321d7bd0fefe5f02c5154eab35c4e8ce8973c802 haskell-stylist/src/Data/CSS/Syntax/StyleSheet.hs -rw-r--r-- 558 bytes
321d7bd0 — Adrian Cochrane Release Stylist Traits 0.1.1! 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{-# LANGUAGE OverloadedStrings #-}
-- | Parses a CSS stylesheet
-- See `StyleSheet` & `parseForURL`.
--
-- Backwards-compatability module, this API has been moved out into "stylist-traits".
module Data.CSS.Syntax.StyleSheet (
        parse, parse', parseForURL, TrivialStyleSheet(..),
        StyleSheet(..), skipAtRule, scanAtRule, scanBlock, skipSpace,
        StyleRule(..),
        -- For parsing at-rules, HTML "style" attribute, etc.
        parseProperties, parseProperties',
        -- for testing
        scanValue
    ) where

import Stylist.Parse