~alcinnz/haskell-stylist

ref: 2881aec48224a437d9a258a44637b7b0746057ae haskell-stylist/src/Stylish/Element.hs -rw-r--r-- 308 bytes
2881aec4 — Adrian Cochrane Implement simple facade over the rule stores. 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
module Stylish.Element(
        Element(..), Attribute(..)
    ) where

import Data.Text.Internal (Text(..))

data Element = ElementNode {
    parent :: Maybe Element,
    previous :: Maybe Element,
    name :: Text,
    attributes :: [Attribute] -- in sorted order.
}
data Attribute = Attribute Text String