mirror of
https://github.com/DS4SD/docling.git
synced 2025-07-28 13:04:25 +00:00
* feat: added excel backend Signed-off-by: Peter Staar <taa@zurich.ibm.com> * first msexcel backend Signed-off-by: Peter Staar <taa@zurich.ibm.com> * added tooling for the cli Signed-off-by: Peter Staar <taa@zurich.ibm.com> * first working version for excel parsing of tables Signed-off-by: Peter Staar <taa@zurich.ibm.com> * added proper typing for mypy Signed-off-by: Peter Staar <taa@zurich.ibm.com> * added proper typing for mypy Signed-off-by: Peter Staar <taa@zurich.ibm.com> * refactor EXCEL to XLSX Signed-off-by: Peter Staar <taa@zurich.ibm.com> * added the unit tests Signed-off-by: Peter Staar <taa@zurich.ibm.com> * ran poetry lock Signed-off-by: Peter Staar <taa@zurich.ibm.com> * adding images to output [WIP] Signed-off-by: Peter Staar <taa@zurich.ibm.com> * reformatted the code Signed-off-by: Peter Staar <taa@zurich.ibm.com> * fixed the mypy Signed-off-by: Peter Staar <taa@zurich.ibm.com> * updated the msexcel Signed-off-by: Peter Staar <taa@zurich.ibm.com> * updated the msexcel (2) Signed-off-by: Peter Staar <taa@zurich.ibm.com> * fixed the mypy Signed-off-by: Peter Staar <taa@zurich.ibm.com> * added tests for merged cells in excel Signed-off-by: Peter Staar <taa@zurich.ibm.com> * reformatted the code Signed-off-by: Peter Staar <taa@zurich.ibm.com> --------- Signed-off-by: Peter Staar <taa@zurich.ibm.com>
51 lines
1.7 KiB
Markdown
51 lines
1.7 KiB
Markdown
| first | second | third |
|
|
|----------|-----------|---------|
|
|
| 1 | 5 | 9 |
|
|
| 2 | 4 | 6 |
|
|
| 3 | 3 | 3 |
|
|
| 4 | 2 | 0 |
|
|
| 5 | 1 | -3 |
|
|
| 6 | 0 | -6 |
|
|
|
|
| col-1 | col-2 | col-3 | col-4 |
|
|
|---------|---------|---------|---------|
|
|
| 1 | 2 | 3 | 4 |
|
|
| 2 | 4 | 6 | 8 |
|
|
| 3 | 6 | 9 | 12 |
|
|
| 4 | 8 | 12 | 16 |
|
|
| 5 | 10 | 15 | 20 |
|
|
| 6 | 12 | 18 | 24 |
|
|
| 7 | 14 | 21 | 28 |
|
|
| 8 | 16 | 24 | 32 |
|
|
|
|
| col-1 | col-2 | col-3 |
|
|
|---------|---------|---------|
|
|
| 1 | 2 | 3 |
|
|
| 2 | 4 | 6 |
|
|
| 3 | 6 | 9 |
|
|
| 4 | 8 | 12 |
|
|
|
|
| col-1 | col-2 | col-3 |
|
|
|---------|---------|---------|
|
|
| 1 | 2 | 3 |
|
|
| 2 | 4 | 6 |
|
|
| 3 | 6 | 9 |
|
|
| 4 | 8 | 12 |
|
|
|
|
| first | header | header |
|
|
|----------|----------|----------|
|
|
| first | second | third |
|
|
| 1 | 2 | 3 |
|
|
| 3 | 4 | 5 |
|
|
| 3 | 6 | 7 |
|
|
| 8 | 9 | 9 |
|
|
| 10 | 9 | 9 |
|
|
|
|
| first (f) | header (f) | header (f) |
|
|
|-------------|--------------|--------------|
|
|
| first (f) | second | third |
|
|
| 1 | 2 | 3 |
|
|
| 3 | 4 | 5 |
|
|
| 3 | 6 | 7 |
|
|
| 8 | 9 | 9 |
|
|
| 10 | 9 | 9 | |