I was wondering if openpyxl can read and/or write rich text into excel. As it stands load_workbook() seems to throw away rich text formatting. For example, I need to open, edit, and save a workbook where some cells have both superscripted and normal text in one cell. When I save the workbook, the format of the first character of the cell is applied to the rest of the cell.
After looking around, it seems like rich text was implemented in openpyxl (based on the issues list on openpyxl's bitbucket):https://bitbucket.org/openpyxl/openpyxl/issues?q=rich+text
But I am still unclear on how to use it (if I interpreted the issues list correctly at all). If it helps at all, I am actually not editing the contents of these cells simply that they don't lose formatting on save.
Any thoughts would be greatly appreciated.
Thanks! Best