aws-samples / aws-samples/amazon-textract-response-parser
How to get where a Table occurs in the document relative to Lines
Open
enhancement
javascript
- Dominant language
- TypeScript
- Stars
- 236
- Forks
- 97
- PR merge metrics
- No merged PRs in 30d
Description
Take, for example, the below table. It occurs after "Key: Value" and before "Another Line". I'd like to be able to process
```
Some Line
Key: Value
| Some Header | Another Header |
| - | - |
| Some Value | Another Value
Another Line
```
I'd like to be able to iterate through a page and see the following items in order:
1. Line ("Some Line")
2. KeyValue ("Key", "Value")
3. Table
4. Line ("Another Line")
Is this possible?
Contributor guide
Assessment
This issue has not been assessed yet.