Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tafia/xl2txt
Convert Excel / OpenDocument SpreadSheets files into text files
https://github.com/tafia/xl2txt
cli excel git macro markdown text vb vba
Last synced: about 2 months ago
JSON representation
Convert Excel / OpenDocument SpreadSheets files into text files
- Host: GitHub
- URL: https://github.com/tafia/xl2txt
- Owner: tafia
- License: mit
- Created: 2017-05-05T03:07:09.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-08T07:38:35.000Z (over 7 years ago)
- Last Synced: 2024-11-16T03:42:05.645Z (3 months ago)
- Topics: cli, excel, git, macro, markdown, text, vb, vba
- Language: Rust
- Size: 33.2 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT.md
Awesome Lists containing this project
README
# xl2txt
Convert Excel / OpenDocument SpreadSheets files into text files
```sh
xl2txt /my/excel/filename.xlsx
```This command will per default create a `/my/excel/.filename` directory which contains:
- `data/sheet_name.md` files for cells value. [example](https://github.com/tafia/xl2txt/blob/master/tests/.issues.xlsb/data/datatypes.md)
- `formula/sheet_name.md` files for cells formula [example](https://github.com/tafia/xl2txt/blob/master/tests/.issues.xlsb/formula/datatypes.md)
- `refs.md` file for all references. [example](https://github.com/tafia/xl2txt/blob/master/tests/.issues.xlsb/refs.md)
- `names.md` file for all defined names. [example](https://github.com/tafia/xl2txt/blob/master/tests/.issues.xlsb/names.md)
- `vba/module_name.vb` files for each module. [example](https://github.com/tafia/xl2txt/blob/master/tests/.issues.xlsb/vba/testVBA.vb)Internally it relies heavily on [calamine](https://github.com/tafia/calamine) crate.
Supports all kind of excel files (xls, xlsx, xlsm, xlsb, xla, xlam) and ods files.