-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpandoc-emphasize-code.cabal
71 lines (66 loc) · 2.96 KB
/
pandoc-emphasize-code.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
name: pandoc-emphasize-code
synopsis: A Pandoc filter for emphasizing code in fenced blocks
description:
A Pandoc filter for emphasizing sections of code in fenced blocks.
author: Oskar Wickström
maintainer: Oskar Wickström
homepage: https://github.com/owickstrom/pandoc-emphasize-code
version: 0.3.0
cabal-version: >= 1.10
build-type: Simple
category: Documentation
license: MPL-2.0
license-file: LICENSE
source-repository head
type: git
location: git://github.com/owickstrom/pandoc-emphasize-code.git
library
hs-source-dirs: src
exposed-modules: Text.Pandoc.Filter.EmphasizeCode
Text.Pandoc.Filter.EmphasizeCode.Chunking
Text.Pandoc.Filter.EmphasizeCode.Html
Text.Pandoc.Filter.EmphasizeCode.Latex
Text.Pandoc.Filter.EmphasizeCode.Parser
Text.Pandoc.Filter.EmphasizeCode.Position
Text.Pandoc.Filter.EmphasizeCode.Pretty
Text.Pandoc.Filter.EmphasizeCode.Range
Text.Pandoc.Filter.EmphasizeCode.Renderable
build-depends: base >= 4 && < 5
, unordered-containers >= 0.2 && < 0.3
, semigroups
, process
, hashable >= 1.2 && < 2
, filepath
, text >= 1.2 && < 1.3
, mtl >= 2.2 && < 3
, pandoc-types >= 1.20 && < 2
, lucid >= 2.9 && < 3
ghc-options: -Wall
default-language: Haskell2010
executable pandoc-emphasize-code
hs-source-dirs: filter
other-modules: Paths_pandoc_emphasize_code
main-is: Main.hs
build-depends: base >= 4 && < 5
, pandoc-types >= 1.20 && < 2
, pandoc-emphasize-code
default-language: Haskell2010
test-suite filter-tests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: Text.Pandoc.Filter.EmphasizeCodeTest
Text.Pandoc.Filter.EmphasizeCode.ParserTest
Text.Pandoc.Filter.EmphasizeCode.RangeTest
Text.Pandoc.Filter.EmphasizeCode.ChunkingTest
Text.Pandoc.Filter.EmphasizeCode.Testing.Ranges
build-depends: base >= 4 && < 5
, unordered-containers >= 0.2 && < 0.3
, pandoc-types >= 1.20 && < 2
, pandoc-emphasize-code
, tasty
, tasty-hunit
, tasty-hspec
, tasty-discover
, text >= 1.2 && < 1.3
default-language: Haskell2010