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? 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
Give a empty span in a list: <ul><li><span>Foo</span><span></span></li></ul>
<ul><li><span>Foo</span><span></span></li></ul>
I get empty spans that can render but fail on editing with Cannot get the end point in the node at path [0] because it has no end text node.:
Cannot get the end point in the node at path [0] because it has no end text node.
{ "@type": "slate", "value": [ { "type": "ul", "children": [ { "type": "li", "children": [ { "type": "span", "children": [ { "text": "Foo" } ] }, { "type": "span", "children": [] } ] } ] } ], "plaintext": "Foo" }
The text was updated successfully, but these errors were encountered:
442ee31
ericof
No branches or pull requests
Give a empty span in a list:
<ul><li><span>Foo</span><span></span></li></ul>
I get empty spans that can render but fail on editing with
Cannot get the end point in the node at path [0] because it has no end text node.
:The text was updated successfully, but these errors were encountered: