1
1
Name : pandoc-csv2table
2
- Version : 1.0.1
2
+ Version : 1.0.2
3
3
Synopsis : Convert CSV to Pandoc Table Markdown
4
4
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
- 
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.
37
7
Homepage : https://github.com/baig/pandoc-csv2table-filter
38
8
Bug-Reports : https://github.com/baig/pandoc-csv2table-filter/issues
39
9
License : MIT
@@ -52,7 +22,7 @@ Source-repository head
52
22
location : git://github.com/baig/pandoc-csv2table-filter.git
53
23
54
24
Library
55
- Build-Depends : base >= 4.8 && < 4.9 ,
25
+ Build-Depends : base >= 4.6 && < 4.9 ,
56
26
csv >= 0.1.2 ,
57
27
text >= 0.11 && < 1.3 ,
58
28
pandoc >= 1.13.0.0 ,
@@ -66,7 +36,7 @@ Library
66
36
Default-Language : Haskell2010
67
37
68
38
Executable pandoc-csv2table
69
- Build-Depends : base >= 4.8 && < 4.9 ,
39
+ Build-Depends : base >= 4.6 && < 4.9 ,
70
40
csv >= 0.1.2 ,
71
41
pandoc >= 1.13.0.0 ,
72
42
pandoc-types >= 1.12.0.0 ,
0 commit comments