-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Change contenteditable "true" to "plaintext-only" #1650
base: develop
Are you sure you want to change the base?
Change contenteditable "true" to "plaintext-only" #1650
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Pavel, really nice to finally start using plaintext-only
🎉.
I made two inline comments, can you have a look at them?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the updates. I did some more testing, and on old versions of Firefox this works fine now.
However, there seems to be a serious issue with Chrome: it doesn't process newline characters correctly anymore. For example:
- Open the editor
- Edit a value, clear it
- Then, type "hello", Enter, Enter, "world", Enter.
- Now, when leaving the value, the text should be changed into proper JSON:
"hello\n\nworld\n"
- On Chrome though, nothing seems to change, but when switching to text mode or getting the JSON contents from the editor, the text is changed into "helloworld": we have lost the newline characters.
This has to do with the way we retrieve the text contents from the editable div. The Editor uses a helper function getInnerText
which iterates over the DOM. We can look into using div.innerText
, but this has an issue with adding a trailing \n
in some but not all cases, making it impossible to recognize an empty string vs a string containing one newline, vs a line with two newlines.
Alternatively, can try to extend the helper function getInnerText
to handle the changed way that Chrome formats the DOM in case of using newlines. I think though that we will hit the very same issue as when using div.innerText
.
I'm not sure how to solve this issue. Any ideas?
I made separate PR, according to commend #1646 (comment)
2: Sometimes by pasting text from somewhere it pastes as html, and you couldn't use cursor to change value.
I've replaced "true" to "plaintext-only" value of contenteditable attribute, which indicates that the element's raw text is editable, but rich text formatting is disabled. (Link to mdn docs) And it works correctly