CSV to Markdown Table
connertennery opened this issue · 0 comments
connertennery commented
Right now .csv files have their links updated but nothing else is changed. Obsidian doesn't open them so they need to be converted into Markdown tables.
An issue with Notion's exporting is that any data table type is exported as .csv and as folders with each file inside being a record in that table. These need to be turned into Markdown tables with a new page created for them to house the table since there's no corresponding exported page, just a .csv and a folder.
e.g.
Kanban:
Title
not started | in-progress | done |
---|---|---|
task 1 | task 2 | task 3 |
becomes:
Title.csv
Title(folder)
|-task 1
|-task 2
-task 3