-
Notifications
You must be signed in to change notification settings - Fork 24
Description
Underline tags in docx files are missed. The offending lines are parse.py:88 and parse.py:31 on commit 833e658.
The master branch treats the underline tag as having only two possible states, on or off and does not account for the fact the underline tag will actually contain string values such as 'single'
, 'double'
, 'dashed'
etc. I have a branch of the code that will update the rpr
dictionary accordingly by altering the code around the two lines that I mentioned, a 'u'
field of the dictionary will be added with a string value representing the type of underlining.
However I do not know what further implication this will have. Does another part of this project assume that the 'u'
field of rpr
will either not exist or take on a true or false value.