We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
As described in #877 by MartinDawson:
In our spreadsheet we use a contentEditable div. We parse the text using chevrotain's lexer to find the cells to highlight. Like so: When we access the content using .textContent it seems to replace all spaces with non-breaking spaces. This should be fine because hyperformula should replace ANY space. However it's missing non-breaking spaces from the regex: pattern: /[ \t\n\r]+/ Hyperformula's lexer was returning #ERROR! due to this. So it should be /s+ instead.
In our spreadsheet we use a contentEditable div. We parse the text using chevrotain's lexer to find the cells to highlight. Like so:
When we access the content using .textContent it seems to replace all spaces with non-breaking spaces.
.textContent
This should be fine because hyperformula should replace ANY space. However it's missing non-breaking spaces from the regex:
pattern: /[ \t\n\r]+/
Hyperformula's lexer was returning #ERROR! due to this.
#ERROR!
So it should be /s+ instead.
/s+
The text was updated successfully, but these errors were encountered:
sequba
Successfully merging a pull request may close this issue.
As described in #877 by MartinDawson:
The text was updated successfully, but these errors were encountered: