@hackage pandoc-csv2table1.0.1

Convert CSV to Pandoc Table Markdown

A Pandoc filter that replaces image inline or fenced code blocks with pandoc markdown tables.

Image links must have a "csv" extension. Include the csv file in markdown as


You can also use fenced code blocks to reference an external CSV file using the "source" attribute.

```{.table caption="This is the **caption**" source="table.csv"}
```

You can include the CSV contents inside fenced code blocks and omit the source attribute.

```{.table caption="This is the **caption**"}
Fruit, Quantity, Price
apples, 15, 3.24
oranges, 12, 2.22
```

CSV contents will be parsed by the pandoc markdown reader.

You can see a rendered PDF file with tables generated from CSV files at Example.

For more information, see README at project's source repository.