David Huggins-Daines

Results 360 comments of David Huggins-Daines

Hello ... not quite sure at first glance what the issue is here, but I'm guessing that it's probalby a syntax error in sphinx_train.cfg. Are you able to run the...

Also note there are a number of deprecation warnings, that's what the TODO comments are about. Making the required changes is probably pretty straightforward and should simplify the code, so...

> Thanks for the PR! This is certainly interesting, given that it's unclear whether anyone is maintaining pdfminer, but I won't rush it. I'll try this out for my own...

Assuming this is related to "3D artwork"? (PDF 1.7 section 13.6) You can probably get to it through the annotation dictionaries, which are accessible via the `annots` attribute of `PDFPage`.

(this is also true for word spacing but it appears that pdfminer.six does that correctly)

> Unfortunately there is still some ambiguity here, because if a page contains multiple content streams, _or even if it has only one_, these content streams could _also_ have `StructParents`...

Finally, what should happen in the case where *both* a page object and one of its content streams contain a **StructParents** entry? Again, uncertain if this happens in real-world PDFs,...

> I've put some recommendations in there and I hope you can figure out the intent from the proposal - essentially, in most of 14.7.6 where it states "content stream"...

Thanks for this! There's a few other places this ambiguity strikes as well, notably to do with graphics and text state, e.g. 9.3.1, which probably refers to the concatenation of...

For Webpack 5, disabling the node-specific stuff is relatively easy: ```js resolve: { fallback: { crypto: false, fs: false, path: false }, }, ``` To include the wasm files, one...