Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Too much white-space in parseRichText() v0.4 #10

Open
patrickvuarnoz opened this issue Mar 30, 2020 · 0 comments
Open

Too much white-space in parseRichText() v0.4 #10

patrickvuarnoz opened this issue Mar 30, 2020 · 0 comments

Comments

@patrickvuarnoz
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant