We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A text span with a space character as content is erroneously treated as a self-closed element without any text. I'm not sure where the problem lies.
This xml in a odf file's content.xml file: <text:span text:style-name="T1"> </text:span>
<text:span text:style-name="T1"> </text:span>
Becomes this xml after going through the functions load and toXml: <text:span text:style-name="T1"/>
<text:span text:style-name="T1"/>
I've described the problem more fully at this stack exchange question.
https://stackoverflow.com/q/46049584/621604
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A text span with a space character as content is erroneously treated as a self-closed element without any text. I'm not sure where the problem lies.
This xml in a odf file's content.xml file:
<text:span text:style-name="T1"> </text:span>
Becomes this xml after going through the functions load and toXml:
<text:span text:style-name="T1"/>
I've described the problem more fully at this stack exchange question.
https://stackoverflow.com/q/46049584/621604
The text was updated successfully, but these errors were encountered: