Convert LibreOffice Calc Spreadsheets (*.ods) into Markdown tables
-
Get Python 3.
-
(Optional) Create a virtual environment.
python3 -m venv env . env/bin/activate
-
Install
ezodf
for parsing *.ods filespip3 install -r requirements.txt
./ods2md.py input_file.ods > output_file.md
- This program disregards all formats. Currencies and percentages will be displayed as plain numbers.
- Merged cells are not supported, the content will be shown at the first cell (this is actually a limitation of GFM table)