Dhruv Shetty

Results 9 comments of Dhruv Shetty

#147 Pull request set up to fix this issue

Will make an attempt.

Any progress on this? @bastibe @Islanna . Looking forward to be able to support OPUS files as well. If it is already supported, is there anything else that I need...

Any fix for this? How do we tell the user if their Health Data is connected or not on iOS

It's been discussed in https://github.com/euske/pdfminer/issues/122 and on stack overflow : https://stackoverflow.com/questions/74416930/how-to-solve-cidx-pdfplumber-python-text-extraction This is the code I've used to solve cid, might not work for all use cases, but works for...

I've not used pdfminer, but used pdfplumber to do so. Attached the code below! It basically checks for tables across pages, and combines them if they are the same cell...

I was able to fix the issue by replacing the TableRow extension used within TableKit TableKitFixedRow.tsx : ``` import { TableRow } from '@tiptap/extension-table'; // Without this, when the user...

Came up with something that worked Extending TableRow to account for ColSpans : ``` import { TableRow } from '@tiptap/extension-table'; export const TableKitFixedRow = TableRow.extend({ addNodeView() { return ({ node...