Skip to content

Commit 381f304

Browse files
committed
Updated cabal file.
1 parent eaeb919 commit 381f304

File tree

1 file changed

+5
-35
lines changed

1 file changed

+5
-35
lines changed

pandoc-csv2table.cabal

+5-35
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,9 @@
11
Name: pandoc-csv2table
2-
Version: 1.0.1
2+
Version: 1.0.2
33
Synopsis: Convert CSV to Pandoc Table Markdown
44
Description: A Pandoc filter that replaces image inline or fenced code
5-
blocks with pandoc markdown tables.
6-
.
7-
Image links must have a "csv" extension.
8-
Include the csv file in markdown as
9-
.
10-
@
11-
![This is the table caption.](table.csv)
12-
@
13-
.
14-
You can also use fenced code blocks to reference an
15-
external CSV file using the "source" attribute.
16-
.
17-
> ```{.table caption="This is the **caption**" source="table.csv"}
18-
> ```
19-
.
20-
You can include the CSV contents inside fenced code blocks
21-
and omit the source attribute.
22-
.
23-
> ```{.table caption="This is the **caption**"}
24-
> Fruit, Quantity, Price
25-
> apples, 15, 3.24
26-
> oranges, 12, 2.22
27-
> ```
28-
.
29-
CSV contents will be parsed by the pandoc markdown reader.
30-
.
31-
You can see a rendered PDF file with tables generated from
32-
CSV files at <https://github.com/baig/pandoc-csv2table-filter/blob/master/Examples/example.pdf Example>.
33-
.
34-
For more information, see <https://github.com/baig/pandoc-csv2table-filter/blob/master/README.md README>
35-
at project's source repository.
36-
5+
blocks with pandoc table markdown. CSV contents will be
6+
parsed by the pandoc markdown reader.
377
Homepage: https://github.com/baig/pandoc-csv2table-filter
388
Bug-Reports: https://github.com/baig/pandoc-csv2table-filter/issues
399
License: MIT
@@ -52,7 +22,7 @@ Source-repository head
5222
location: git://github.com/baig/pandoc-csv2table-filter.git
5323

5424
Library
55-
Build-Depends: base >=4.8 && <4.9,
25+
Build-Depends: base >=4.6 && <4.9,
5626
csv >= 0.1.2,
5727
text >= 0.11 && < 1.3,
5828
pandoc >= 1.13.0.0,
@@ -66,7 +36,7 @@ Library
6636
Default-Language: Haskell2010
6737

6838
Executable pandoc-csv2table
69-
Build-Depends: base >=4.8 && <4.9,
39+
Build-Depends: base >=4.6 && <4.9,
7040
csv >= 0.1.2,
7141
pandoc >= 1.13.0.0,
7242
pandoc-types >= 1.12.0.0,

0 commit comments

Comments
 (0)