Jonas

Results 475 comments of Jonas

c0190bdc3ec19e84a0e2024d8d55cb4fc5491cab is the culprit, namely this changed line: https://github.com/ueberdosis/tiptap/commit/c0190bdc3ec19e84a0e2024d8d55cb4fc5491cab#diff-279c8b817010cf945a712289251df936bd0da21273eb4d494f2b51601f52c5d9L32-R32 Which makes sense, as instead of appending all child nodes of the passed (or created) element (`editor.options.element.childNodes`), just the element containing...

@nperez0111 it needs to be `editor.view.dom.parentNode.childNodes`, as `editor.view.dom` is the editor itself, but e.g. the drag handle is appended to its parent node. `editor.options.element` is the *parent element* of the...

https://github.com/ueberdosis/tiptap/pull/7350

Currently (on latest master and on stable25), the blockquote menu item is disabled when selecting text in a list item. This seems sensible to me, given that our editor schema...

The problem seems that some commands are reported as not possible by `$editor.can()` even though they can be used without problems. E.g. switching from a bullet list to either of...

I opened an upstream issue about it since it is also reproducible in TipTap upstream: https://github.com/ueberdosis/tiptap/issues/5225

> @juliusknorr what about re-introducing the placeholder? Why was it taken out? If accessibility is the concern, I think we could solve it by having an action that focuses the...

I checked Notion and Coda, they both show the placeholder on each new paragraph. I wonder why we would want it only on empty files, but don't have strong feelings...