csv-to-md
csv-to-md copied to clipboard
Batch CSV to Markdown converter.
For example, if I have: ``` key,value Alice,"value1,value2,"value,3,with,comma"" ``` then the output will be ``` Alice:: [[value1]] [[value2]] [[value,3,with,comma]] ``` not ``` Alice:: [[value1]] [[value2]] [[value]] [[3]] [[with]] [[comma]] ```...
I might be missing this, is there a way to have the formatting for Column headers and then the content in each row have normal text formatting? The documentation I'm...
This is useful in Dataview queries, since with ``` key:: foo bar ``` you get a string, while with ``` key:: foo key:: bar ``` you get a list `["foo","bar"]`....
In my files I have quotes (they happen to be double) around text in order to preserve commas. These are removed in the body but remain the YAML. It would...
The script runs successful, but there is not output in the data folder. The log it only says generally. How to know what went wrong? ``` ./data/Không gian làm việc...
It would be convenient to have an option to omit columns. I had a .csv file with three columns. I needed to create .md files with first column as the...