Prateek Sahay
Prateek Sahay
hello, xlsx is supported in the Unstructured library as of release `0.6.7`. can we please add support for xlsx in langchain as well? See: https://github.com/Unstructured-IO/unstructured/issues/587#issuecomment-1555018550
this can be closed now that xlsx files are supported through unstructured: https://python.langchain.com/docs/integrations/document_loaders/excel
hello, still here in 2024. please merge this in
+1 on this issue steps to replicate: ```py from docx import Document from htmldocx import HtmlToDocx document = Document() new_parser = HtmlToDocx() html = 'testing' new_parser.add_html_to_document(html, document) ```