Hacker News new | ask | show | jobs
by jquaint 380 days ago
Cool tool!

Anyone have recommendations for a command line solution on Linux? :)

1 comments

You could potentially do a pipeline -

first converting xlsx to csv with libreoffice using approximately: `soffice --convert-to csv *xlsx`,

followed by `pandoc in.csv -o out.md`.

[Edit: The more I think about it, the more I can see lots of ways this could go wrong.]