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
Sorry if this is not the right place to ask. I would like to read some attributes like file-as from the creator element: <dc:creator xmlns:ns0="http://www.idpf.org/2007/opf" ns0:role="aut" ns0:file-as="Deaver, Jeffery">Jeffery Deaver</dc:creator>. Is this somehow possible?
The text was updated successfully, but these errors were encountered:
Right now the metadata is parsed here and we just get the tag and the text value, the metadata is a HashMap<String, Vec<String>>.
With the current version, the only way to get that information is to parse again the root file xml. Maybe it's interesting to store all attrs information during the root parse or just create a complex struct to store metadata with more than string values.
Sorry if this is not the right place to ask. I would like to read some attributes like file-as from the creator element:
<dc:creator xmlns:ns0="http://www.idpf.org/2007/opf" ns0:role="aut" ns0:file-as="Deaver, Jeffery">Jeffery Deaver</dc:creator>
. Is this somehow possible?The text was updated successfully, but these errors were encountered: