Automation: Convert CSV file to MD file
We want an automated action that runs when the rubric.csv file is changed - it should parse the file into the Markdown format and overwrite rubric.md.
We can use the TypeScript infrastructure to write the code and have the action file run it.
@nhcarrigan I could use this library, https://www.npmjs.com/package/csv-to-markdown-table, can I use Javascript instead of ts, since I am unsure if we would want to create a ts declaration file, also if not, could we also automate this one with the same? https://www.npmjs.com/package/csv2md
I could use this library, https://www.npmjs.com/package/csv-to-markdown-table, can I use Javascript instead of ts, since I am unsure if we would want to create a ts declaration file
This library includes its own TS declarations you wouldn't need to create a file.