Display metadata from files embedded in office documents
Currently, mat2 isn't displaying the metadata from embedded files in office documents. Currently, it's only showing the metadata of the archive, handled in a flat dict.
I think that we might use a nested dict structure to handle this:
{'my_file.docx':
'author': 'jvoisin',
'my_picture.png': {
'producer': 'the GIMP'
},
'creation_date': 'yesterday'
}
Or a flat dict, with prefixes:
{'author': 'jvoisin',
'(my_picture) producer': 'the GIMP',
'creation_date': 'yesterday'
}
But I'm open to other suggestions :)