packages feed

discount-0.1: discount.cabal

name:                discount
version:             0.1
synopsis:            Haskell bindings to the discount Markdown library.
description:         Discount is a thin wrapper around the discount library <http://www.pell.portland.or.us/~orc/Code/discount/> for parsing Markdown. It supports both additional features such as definition lists and tables, while also having a mode for pure Markdown.
homepage:            http://github.com/veinor/discount
license:             MIT
license-file:        LICENSE
author:              Patrick Hurst
maintainer:          phurst@amateurtopologist.com
category:            Text
build-type:          Simple
cabal-version:       >=1.8

library
  extra-libraries:     markdown
  exposed-modules:     Text.Discount
  other-modules:       Text.Discount.Internal
  build-depends:       base >= 4.3 && < 5
                     , text
                     , bytestring >= 0.8

source-repository head
  type: git
  location: https://github.com/veinor/discount