cstkingkey / docx-rs

A Rust library for parsing and generating docx files.
MIT License
12 stars 12 forks source link

Does not deserialize documents with AP namespaces for app #21

Closed Murad-Awad closed 3 months ago

Murad-Awad commented 3 months ago

There are some docx files that have an explicit ap: namespace prior to every field in the docx app file. This is a standard openxml thing that I've seen in practice when saving docx files in sharepoint. This library doesn't deal with this case and fails to serialize strings to docx files with this format. Attached is an example file. old_doc_format.docx

Murad-Awad commented 3 months ago

Add support for App with standard AP namespace attempts to address this.