packages feed

xhtml-combinators-0.2.2: xhtml-combinators.cabal

name: xhtml-combinators
version: 0.2.2
cabal-version: >= 1.2.3
synopsis: Fast and easy to use XHTML combinators.
description: 
  xhtml-combinators provides a set of (hopefully!) fast and 
  easy to use XHTML 1.0 Strict combinators built on top of the
  Data.Text library.
category: Web, Text
license: BSD3
homepage: http://www.dcs.shef.ac.uk/~aca08aa/xhtmlc.html
license-file: LICENSE
author: Alasdair Armstrong
maintainer: alasdair.armstrong@googlemail.com
build-type: Simple

library
  build-depends: 
    base < 5, containers, random, transformers >= 0.2, xml >= 1.3.5, text >= 0.7
  hs-source-dirs: src
  exposed-modules: 
    Text.XHtmlCombinators
    Text.XHtmlCombinators.Safe
    Text.XHtmlCombinators.Attributes
    Text.XHtmlCombinators.Attributes.Safe
    Text.XHtmlCombinators.Escape
    Text.XHtmlCombinators.Render
    Text.XHtmlCombinators.Extras.Lorem
  other-modules:
    Text.XHtmlCombinators.Internal
    Text.XHtmlCombinators.Combinators
    Text.XHtmlCombinators.Attributes.Internal
    Text.XHtmlCombinators.Attributes.Internal.Safe
  extensions: OverloadedStrings, PatternGuards
  ghc-options: -O2