-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpandoc-crossref.cabal
149 lines (141 loc) · 5.91 KB
/
pandoc-crossref.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
-- Initial pandoc-crossref.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: pandoc-crossref
version: 0.2.6.0
synopsis: Pandoc filter for cross-references
description: pandoc-crossref is a pandoc filter for numbering figures, equations, tables and cross-references to them.
license: GPL-2
license-file: LICENSE.md
author: Nikolay Yakimov
maintainer: root@livid.pp.ru
-- copyright:
category: Text
build-type: Simple
extra-doc-files: README.md
BSD3.md
cabal-version: >=1.18
data-files: demo.md
extra-source-files: test/*.inc
test/m2m/equations/*.md
test/m2m/equations-auto/*.md
test/m2m/equations-tables/*.md
test/m2m/equations-tables-auto/*.md
test/m2m/subfigures/*.md
test/m2m/subfigures-grid/*.md
test/m2m/subfigures-ccsDelim/*.md
test/m2m/equations/*.tex
test/m2m/equations-auto/*.tex
test/m2m/equations-tables/*.tex
test/m2m/equations-tables-auto/*.tex
test/m2m/subfigures/*.tex
test/m2m/subfigures-grid/*.tex
test/m2m/subfigures-ccsDelim/*.tex
source-repository head
type: git
location: https://github.com/lierdakil/pandoc-crossref
source-repository this
type: git
location: https://github.com/lierdakil/pandoc-crossref
tag: v0.2.6.0
library
exposed-modules: Text.Pandoc.CrossRef
other-modules: Text.Pandoc.CrossRef.References
Text.Pandoc.CrossRef.References.Blocks
Text.Pandoc.CrossRef.References.List
Text.Pandoc.CrossRef.References.Refs
Text.Pandoc.CrossRef.References.Types
Text.Pandoc.CrossRef.Util.Settings
Text.Pandoc.CrossRef.Util.Meta
Text.Pandoc.CrossRef.Util.Options
Text.Pandoc.CrossRef.Util.Template
Text.Pandoc.CrossRef.Util.Util
Text.Pandoc.CrossRef.Util.CustomLabels
Text.Pandoc.CrossRef.Util.CodeBlockCaptions
Text.Pandoc.CrossRef.Util.ModifyMeta
Text.Pandoc.CrossRef.Util.Settings.Gen
Text.Pandoc.CrossRef.Util.Settings.Template
Text.Pandoc.CrossRef.Util.Gap
Text.Pandoc.CrossRef.Util.PandocOrphans
build-depends: base >=4.9 && <5
, pandoc == 1.19.*
, pandoc-types == 1.17.*
, mtl >= 1.1 && <2.3
, containers >= 0.1 && <0.6
, data-default >= 0.4 && <0.8
, data-accessor >= 0.2.2.6 && < 0.3.0.0
, data-accessor-template >= 0.2.1.12 && < 0.3.0.0
, data-accessor-transformers >= 0.2.1.6 && < 0.3.0.0
, template-haskell >= 2.7.0.0 && < 3.0.0.0
, roman-numerals == 0.5.*
, syb >= 0.4 && < 0.8
, utility-ht >= 0.0.11 && < 0.1.0
, directory >= 1 && < 1.4
, filepath >= 1.1 && < 1.5
hs-source-dirs: lib
Ghc-Options: -Wall
default-language: Haskell2010
executable pandoc-crossref
main-is: pandoc-crossref.hs
build-depends: base
, pandoc-crossref
, pandoc
, pandoc-types
hs-source-dirs: src
Ghc-Options: -Wall
default-language: Haskell2010
Test-Suite test-pandoc-crossref
Type: exitcode-stdio-1.0
Main-Is: test-pandoc-crossref.hs
hs-source-dirs: test, lib
Build-Depends: base
, pandoc-crossref
, hspec
, pandoc
, pandoc-types
, mtl
, containers
, data-default
, data-accessor-template
, syb
, roman-numerals
, template-haskell
, utility-ht
, data-accessor
, directory
, filepath
, data-accessor-transformers
other-modules:
Native
Paths_pandoc_crossref
Text.Pandoc.CrossRef
Text.Pandoc.CrossRef.References
Text.Pandoc.CrossRef.References.Blocks
Text.Pandoc.CrossRef.References.List
Text.Pandoc.CrossRef.References.Refs
Text.Pandoc.CrossRef.References.Types
Text.Pandoc.CrossRef.Util.CodeBlockCaptions
Text.Pandoc.CrossRef.Util.CustomLabels
Text.Pandoc.CrossRef.Util.Gap
Text.Pandoc.CrossRef.Util.Meta
Text.Pandoc.CrossRef.Util.ModifyMeta
Text.Pandoc.CrossRef.Util.Options
Text.Pandoc.CrossRef.Util.Settings
Text.Pandoc.CrossRef.Util.Settings.Gen
Text.Pandoc.CrossRef.Util.Settings.Template
Text.Pandoc.CrossRef.Util.Template
Text.Pandoc.CrossRef.Util.Util
Text.Pandoc.CrossRef.Util.PandocOrphans
Ghc-Options: -rtsopts -Wall -fno-warn-unused-do-bind -threaded
Default-Language: Haskell2010
Test-Suite test-integrative
Type: exitcode-stdio-1.0
Main-Is: test-integrative.hs
hs-source-dirs: test
Build-Depends: base
, hspec
, pandoc
, filepath
, directory
, pandoc-crossref
Ghc-Options: -rtsopts -Wall -fno-warn-unused-do-bind -threaded
Default-Language: Haskell2010