-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmmark-ext.cabal
104 lines (92 loc) · 3.08 KB
/
mmark-ext.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
cabal-version: 2.4
name: mmark-ext
version: 0.2.1.5
license: BSD-3-Clause
license-file: LICENSE.md
maintainer: Mark Karpov <[email protected]>
author: Mark Karpov <[email protected]>
tested-with: ghc ==9.6.6 ghc ==9.8.2 ghc ==9.10.1
homepage: https://github.com/mmark-md/mmark-ext
bug-reports: https://github.com/mmark-md/mmark-ext/issues
synopsis: Commonly useful extensions for the MMark markdown processor
description:
Commonly useful extensions for the MMark markdown processor. Click on
"Text.MMark.Extension.Common" to get started.
category: Text
build-type: Simple
data-files:
data/*.md
data/*.html
extra-doc-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/mmark-md/mmark-ext.git
flag dev
description: Turn on development settings.
default: False
manual: True
library
exposed-modules:
Text.MMark.Extension.Common
Text.MMark.Extension.Comment
Text.MMark.Extension.FontAwesome
Text.MMark.Extension.Footnotes
Text.MMark.Extension.GhcSyntaxHighlighter
Text.MMark.Extension.Kbd
Text.MMark.Extension.LinkTarget
Text.MMark.Extension.MathJax
Text.MMark.Extension.ObfuscateEmail
Text.MMark.Extension.PunctuationPrettifier
Text.MMark.Extension.Skylighting
Text.MMark.Extension.TableOfContents
default-language: GHC2021
build-depends:
base >=4.15 && <5,
foldl >=1.2 && <1.5,
ghc-syntax-highlighter >=0.0.1 && <0.1,
lucid >=2.9.13 && <3,
microlens >=0.4 && <0.5,
mmark >=0.0.4 && <=0.1,
modern-uri >=0.3.4.4 && <0.4,
skylighting >=0.7.6 && <0.15,
text >=0.2 && <2.2
if flag(dev)
ghc-options:
-Wall -Werror -Wredundant-constraints -Wpartial-fields
-Wunused-packages
else
ghc-options: -O2 -Wall
test-suite tests
type: exitcode-stdio-1.0
main-is: Spec.hs
build-tool-depends: hspec-discover:hspec-discover >=2.0 && <3.0
hs-source-dirs: tests
other-modules:
Text.MMark.Extension.CommentSpec
Text.MMark.Extension.FontAwesomeSpec
Text.MMark.Extension.FootnotesSpec
Text.MMark.Extension.GhcSyntaxHighlighterSpec
Text.MMark.Extension.KbdSpec
Text.MMark.Extension.LinkTargetSpec
Text.MMark.Extension.MathJaxSpec
Text.MMark.Extension.ObfuscateEmailSpec
Text.MMark.Extension.PunctuationPrettifierSpec
Text.MMark.Extension.SkylightingSpec
Text.MMark.Extension.TableOfContentsSpec
Text.MMark.Extension.TestUtils
default-language: GHC2021
build-depends:
base >=4.15 && <5,
hspec >=2 && <3,
lucid >=2.9.13 && <3,
mmark >=0.0.4 && <=0.1,
mmark-ext,
text >=0.2 && <2.2
if flag(dev)
ghc-options:
-Wall -Werror -Wredundant-constraints -Wpartial-fields
-Wunused-packages
else
ghc-options: -O2 -Wall