You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
unkown_value_right.docx Xml(FromStr("Unkown Value. Found right, Expected "start", "end", "center","))
^ Also a typo in the error message (Unkown -> Unknown).
Most of the documents fail to load because of the missing id/level in NumberingProperty and unknown right value. The other errors are quite rare.
The text was updated successfully, but these errors were encountered:
I've been using
docx
crate in one of my projects for a while and over time I've run into a few documents that fail to load with this crate.element_end.docx:
Xml(UnexpectedToken { token: "ElementEnd { end: Empty, span: StrSpan(\"/>\" 487..489) }" })
invalid_digit.docx:
Xml(FromStr(ParseIntError { kind: InvalidDigit }))
missing_content.docx:
Xml(MissingField { name: "Hyperlink", field: "content" })
missing_id.docx:
Xml(MissingField { name: "NumberingProperty", field: "id" })
missing_level.docx:
Xml(MissingField { name: "NumberingProperty", field: "level" })
unkown_value_right.docx
Xml(FromStr("Unkown Value. Found
right, Expected
"start", "end", "center","))
^ Also a typo in the error message (Unkown -> Unknown).
Most of the documents fail to load because of the missing
id
/level
inNumberingProperty
and unknownright
value. The other errors are quite rare.The text was updated successfully, but these errors were encountered: