Michael Williamson

Results 71 comments of Michael Williamson

To support this, it looks like `w:tbl/w:tblPr/w:tblLook/@w:firstRow` and `w:tbl/w:tblPr/w:tblLook/@w:firstColumn` needs to be read. It's also worth noting that `thead` and `th` tags should be created if you mark rows as...

Adding support should be reasonably straightforward, but I'm not sure when I'll get time to work on this (since it's just a side-project). In other words, I wouldn't rely on...

There are two main places you'd need to look at. One is the code that parses the document in `lib/docx/body-reader.js`. The existing code that handles table headers is probably a...

The Python implementation is fairly similar to the JavaScript implementation, but it's worth noting that they (should!) have the same level of support for tables.

Could you provide a minimal example document that causes the error?

Hmm, it looks like two `w:lvl` elements in `numbering.xml` have the same `w:pStyle` element. Specifically, they're in the same `w:abstractNum` but have different levels, so it's not entirely clear how...

Do you have a minimal example document you can share?

Thanks for sharing. The document has quite a lot of elements in, which makes it harder to work out exactly what the issue is. Would you be able to share...

It looks like the issue with the first file is that the `a:blip` element doesn't have any associated image data, which should be fixed in the latest commit.

In the second case, it looks like there's an external link: ``` ``` I'll have a think about the right way of handling this is: the closest match to current...