xlsxtomd: fill empty cells with a single space

Signed-off-by: Jared Van Bortel <jared@nomic.ai>
This commit is contained in:
Jared Van Bortel 2024-09-30 16:54:41 -04:00
parent cee91fdebe
commit a575980014

View File

@ -39,7 +39,7 @@ static QString formatCellText(const QXlsx::Cell *cell)
} }
if (cellText.isEmpty()) if (cellText.isEmpty())
return QString(); return u" "_s;
// Apply Markdown and HTML formatting based on font styles // Apply Markdown and HTML formatting based on font styles
QString formattedText = cellText; QString formattedText = cellText;