mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2024-10-01 01:06:10 -04:00
xlsxtomd: fill empty cells with a single space
Signed-off-by: Jared Van Bortel <jared@nomic.ai>
This commit is contained in:
parent
cee91fdebe
commit
a575980014
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user