-
Notifications
You must be signed in to change notification settings - Fork 7
/
yesod-text-markdown.cabal
49 lines (46 loc) · 2.24 KB
/
yesod-text-markdown.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: yesod-text-markdown
version: 0.1.9
synopsis: Yesod support for Text.Markdown.
description: Use Text.Markdown in a typical yesod project.
This module contains instances related to persistence,
even though it isn't tightly coupled to yesod.
.
This package is different from the yesod-markdown package
which uses the pandoc renderer for markdown. The main
advantages of having Text.Markdown as underlying renderer
is the much smaller dependencies and the permissiver
license. See
<https://github.com/pbrisbin/yesod-markdown> and
<https://github.com/snoyberg/markdown>.
.
This package intentionally tries to be like
yesod-markdown, so switching between the markdown backends
should be easy.
.
If you wonder why the haddocks only show a few exports,
it's because it doesn't show exporting of instances which
is most of what this package is about.
bug-reports: https://github.com/Tarrasch/yesod-text-markdown/issues
license: BSD3
license-file: LICENSE
author: Arash Rouhani
maintainer: [email protected]
-- copyright:
category: Yesod
build-type: Simple
cabal-version: >=1.8
library
exposed-modules: Yesod.Text.Markdown
build-depends: base >= 4 && < 5
, markdown >= 0.1 && < 2.0
, yesod-core >= 1.2 && < 2.0
, yesod-form >= 1.3 && < 2.0
, yesod-persistent >= 1.2 && < 2.0
, persistent >= 1.2 && < 3.0
, text >= 0.11 && < 2.0
, shakespeare >= 2.0 && < 3.0
, aeson >= 0.7 && < 2.0
ghc-options: -Wall -fno-warn-orphans
source-repository head
type: git
location: git://github.com/Tarrasch/yesod-text-markdown.git