-
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cell Comments are treated like normal text content #24
Comments
Do mean you by ignoring |
Yes, why not. Or maybe even ignore all |
Has there been any progress on this issue in the meantime? |
thanks for your interest in pyexcel-ods. It is released in 0.5.3. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When reading a file which contains cells with comments, these comments are added to the text of the cell.
The content of this cell after reading with pyexcel-ods will be
comment\nkey
I think this is due to the way it is handled in
def __read_text_cell(self, cell):
linkIt simply reads all the elements by type P, and also gets the comment-paragraph from the
<office:annotation>
element. Afterwards all paragraphs are joined together.Would it be possible to look for P elements only as direct children of the table-cell?
The text was updated successfully, but these errors were encountered: