pydocx
pydocx copied to clipboard
An extendable docx file format parser and converter
Hello, I followed the example from your documentation to convert my docx file to html: ``` from pydocx import PyDocX # Pass in a path html = PyDocX.to_html('file.docx') # Pass...
In this PR we add the borders for paragraphs and run text items. Issues like #235 are solved at the moment.
Found via https://github.com/CenterForOpenScience/osf.io/issues/980 : Page headers and text boxes are not included in rendered output.
This PR is related to the problem in issue #245
In this PR I tried to solve the issue from: #233, #228 and #227. Let me know what you think about it.
Hi pydocx team, Recently I was attempting to add images to a docx file via python-docx then convert the document to html on Python 3.6.0 with PyDocX version 0.9.10. I...
Related to issue #238
We have a scenario which fails with the following error: ``` Traceback (most recent call last): File "/Users/geo/PycharmProjects/pydocx/tt/t.py", line 74, in html = PyDocX.to_html(open(file_path, 'rb')) File "/Users/geo/PycharmProjects/pydocx/pydocx/pydocx.py", line 13, in...
Related to #230. Few notes about implementation. Currently we may have cases when cell background color is set to a dark color(like black). In Office this is handled automatically and...
Currently if we have an input like: We get as output this: So, no cell background color will be exported.