You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The method parseRichText() concatenates all text found in individual text runs with a white-space, i.e. by implode(' ', $value) on line 315 in v0.4.
At least with our XLSX this turns out to be wrong since it adds white-space between differently formatted text elements in one cell and by that doubling existing white-space. Changing it to implode('', $value) solved the problem.
The text was updated successfully, but these errors were encountered:
The method parseRichText() concatenates all text found in individual text runs with a white-space, i.e. by
implode(' ', $value)
on line 315 in v0.4.At least with our XLSX this turns out to be wrong since it adds white-space between differently formatted text elements in one cell and by that doubling existing white-space. Changing it to
implode('', $value)
solved the problem.The text was updated successfully, but these errors were encountered: