-
Notifications
You must be signed in to change notification settings - Fork 13
/
pandoc-csv2table.cabal
49 lines (46 loc) · 1.87 KB
/
pandoc-csv2table.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
Name: pandoc-csv2table
Version: 1.0.9
Synopsis: Convert CSV to Pandoc Table Markdown
Description: A Pandoc filter that replaces image inline or fenced code
blocks with pandoc table markdown. CSV contents will be
parsed by the pandoc markdown reader.
Homepage: https://github.com/baig/pandoc-csv2table-filter
Bug-Reports: https://github.com/baig/pandoc-csv2table-filter/issues
License: MIT
License-File: LICENSE
Author: Wasif Hasan Baig <[email protected]>
Maintainer: Venkateswara Rao Mandela <[email protected]>
Copyright: (c) 2015-2020 Wasif Hasan Baig, Venkateswara Rao Mandela
Stability: alpha
Category: Text
Build-Type: Simple
Data-Files: README.md
Extra-Source-Files: CHANGELOG.md
Cabal-Version: >=1.10
Source-repository head
type: git
location: git://github.com/baig/pandoc-csv2table-filter.git
Library
Build-Depends: base >=4.6 && <5,
csv >= 0.1.2,
text >= 0.11,
pandoc >= 1.13.0.0,
pandoc-types >= 1.12.0.0
Hs-Source-Dirs: src
Default-Extensions: CPP
Exposed-Modules: Text.Table.Definition,
Text.Table.Builder,
Text.Table.Helper
Text.Table.Tablify
Buildable: True
Default-Language: Haskell2010
Executable pandoc-csv2table
Build-Depends: base >=4.6 && <5,
csv >= 0.1.2,
pandoc >= 1.13.0.0,
pandoc-types >= 1.12.0.0,
pandoc-csv2table
Hs-Source-Dirs: .
Main-Is: csv2table.hs
Buildable: True
Default-Language: Haskell2010