The `DocxParser` currently handles only headings and paragraphs ([ref](https://github.com/torchbox/wagtail-content-import/blob/main/src/wagtail_content_import/parsers/microsoft.py#L43)) Extend it to handle: * [ ] links -- https://python-docx.readthedocs.io/en/latest/api/text.html#hyperlink-objects * [ ] images -- https://python-docx.readthedocs.io/en/latest/api/shape.html * [ ] tables -- https://python-docx.readthedocs.io/en/latest/api/table.html * [ ] and text styles (e.g. bold, italic, underline) -- https://python-docx.readthedocs.io/en/latest/user/styles-understanding.html
The
DocxParsercurrently handles only headings and paragraphs (ref)Extend it to handle: