packages feed

markup-preview-0.2.2.1: markup-preview.cabal

name:                markup-preview
version:             0.2.2.1
synopsis:            A simple markup document preview (markdown, textile, reStructuredText)
description:         
    A GUI application that renders the markup documents (markdown, textile, reStructuredText) into
    HTML and presents them into a web view. It also reloads the content automatically when the source
    file changes.
    .
    Changes from 0.1.0.0:
    .
    * Added command line options e.g. markup file can be specified when starting the program.

license:             GPL-2
license-file:        LICENSE
author:              Marius Ghita
maintainer:          mhitza@gmail.com
-- copyright:           
category:            Text
build-type:          Simple
cabal-version:       >=1.8
data-files:          Resources/layout.html

source-repository head
    type:            git
    location:        https://github.com/mhitza/markup-preview

executable markup-preview
  main-is:             Main.hs
  ghc-options:         -threaded -Wall
  cpp-options:         -DCABAL
  other-modules:       Paths_markup_preview,
                       Application.FileHandling,
                       Application.CommandLine,
                       Application.GUI,
                       Application.Types
  build-depends:       base >= 4.6 && <= 4.8,
                       gtk2hs-buildtools,
                       gtk == 0.13.*,
                       webkit == 0.13.*,
                       pandoc == 1.12.* || == 1.13.1,
                       directory == 1.2.*,
                       temporary == 1.1.* || == 1.2.*,
                       transformers == 0.3.*,
                       mtl == 2.1.*,
                       cmdargs == 0.10.*,
                       MissingH == 1.3.*,
                       glib == 0.13.0.6,
                       text == 1.1.*