Filimoa / open-parse

Improved file parsing for LLM’s
https://filimoa.github.io/open-parse/
MIT License
2.34k stars 89 forks source link

Fix bug with parse.py #29

Closed mashihua closed 4 months ago

mashihua commented 4 months ago

Fix bug with https://github.com/Filimoa/open-parse/issues/28

Filimoa commented 4 months ago

Minor request but could adjust your solution so it passes the failing test

Standard markdown is formatted with spaces to make it slightly more readable

| Year | Revenue | Expenses |
|---|---|---|
| 2022 | 100,000 | 50,000 |
| 2021 | 90,000 | 45,000 |

Your solutions outputs

|Year|Revenue|Expenses |
|---|---|---|
| 2022 | 100,000 | 50,000 |
| 2021 | 90,000 | 45,000 |