pandoc-csv2table
pandoc-csv2table copied to clipboard
A Pandoc filter that renders CSV as Pandoc Markdown Tables.
After a successful install via `cabal install pandoc-csv2table`, the following happens (missing PATH?): ``` $ pandoc --filter pandoc-csv2table table.md -o table.pdf Error running filter pandoc-csv2table: Could not find executable pandoc-csv2table...
After a successful install via `cabal install pandoc-csv2table`, the following happens (missing PATH?): ``` $ pandoc --filter pandoc-csv2table table.md -o table.pdf Error running filter pandoc-csv2table: Could not find executable pandoc-csv2table...
i have installed pandoc with version **2.10.1** and compiled pandoc-csv2table with stack install. when i tried to convert markdown file, i have got following error. ``` pandoc-csv2table: Error in $:...
test.csv ```{.csv} 你好,世界 Hello,World! ``` test.md ```{.md}  ``` ```{.zsh} pandoc -o output.md --filter pandoc-csv2table test.md ``` output.md ```{.md} +--------+--------+ | 你好 | | 世界 | +========+========+ | Hello |...
In my field of research, bioinformatics, TSV (tab-separated variables) is often used instead of CSV. The only difference is that the values are tab rather than comma separated. For example,...
I'm getting the above error from a previously working set up---probably caused by upgrading to High Sierra on the Mac, I guess. Any idea what might be causing this? I'm...
I'm using pandoc-csv2table, which generally does a good job of guessing sensible widths. But occasionally it does something strange, and then I'd like to be able to set the widths...
Consider the following Markdown: `````` $ cat csvtables.md | gsed "s#^# #" # Simple Tables ```` {.table caption="Does this result in a `simple_table`?" type="simple" aligns="RCRLCRC" header="yes"} **Fruit(R)**, *Quantity(C)*, ***Price(R)***, **`Origin`(L)**,...
`````` $ cat a.md ```{.table caption="capt" source="b.csv"} ``` $ cat b.csv foo,bar , foo,bar $ pandoc --filter pandoc-csv2table a.md +-------+-------+ | foo | bar | +=======+=======+ +-------+-------+ | foo |...
As $headline says...