pydocx icon indicating copy to clipboard operation
pydocx copied to clipboard

An extendable docx file format parser and converter

Results 57 pydocx issues
Sort by recently updated
recently updated
newest added

No example document available currently, but my guess is that `instr` is None. ``` File "/home/policystat/env/lib/python2.7/site-packages/pydocx/export/html.py", line 211, in export for result in super(PyDocXHTMLExporter, self).export() File "/home/policystat/env/lib/python2.7/site-packages/pydocx/export/html.py", line 209, in...

bug

According to the ECMA specification, the fallback should inherit the scope of it's grandparent, excluding AlternateContent (so AlternateContent may not contain other AlternateContents). Currently we have Fallback implemented to allow...

The problem: #203 introduced a bug that results in nested paragraphs. The solution: We will need to build a method similar to `pydocx.export.base:PyDocXExporter._convert_complex_fields_into_simple_fields`. The complex fields to simple fieds (cf2sf)...

The files that I deal with have a lot of images in them and they cause the resulting html file to be huge. To solve this, I've hired someone to...

I'm unsure of the exact cause, but attached `.docx` has a hyperlink around the text `http://translate.google.com/#`, but when run through pydocx, the resulting HTML is just surrounded in `strong` tags...

bug

Paragraphs need to walk the style hierarchy chain and apply properties, just like Runs.

bug

- pydocx doesn't currently perform XML validation even though the schema definitions for wordml. XML Schema validation: http://lxml.de/validation.html "Pure python" alternative to `lxml`: http://pyxb.sourceforge.net/ The schema files are all available...

question

Otherwise we can end up with output like this: ``` html P O L I C Y ```

Namespaces are important because there are tags in different namespaces that have the same tag name. Instead, each tag class (e.g. `openxml.wordprocessing.Paragraph`) should define its namespace and the parser should...

bug