Nick Perez

Results 442 comments of Nick Perez

Unfortunately it can be difficult sometimes to get LLMs to follow instructions. Are you still seeing issues?

You are importing generateHTML from @tiptap/react when you need to import it from @tiptap/html like this demo: https://tiptap.dev/docs/editor/api/utilities/html#generate-html-from-json

You will need to update y-prosemirror version, there was a bug with it Just to be safe, update all tiptap packages & y-prosemirror if you have it explicitly declared in...

SSR is the reason behind this. Without a document the editor can fail since it is expected to run within the browser. With the new react binding and `immediatelyRender: true`...

My comment around SSR was the reason why we changed `useEditor` to return null on first render & then an actual editor instance afterward (via a useEffect which would not...

Hey @wvbe, given that you mentioned that [you aren't going to be putting more work into the project](https://github.com/wvbe/docxml/issues/40#issuecomment-2377930370), could you put a license on it now so that others can...

> @nperez0111, I've reached out to some stakeholders to get their views. I expect that I can give this the MIT license after that. Will keep you updated! Oh, that...

@RomainLanz I would not rename node types if at all possible. `onContentError` Can reliably detect an issue, but it would be up to you on how to handle it. You...

> LGTM, and would definitely be useful in our usage of tiptap. > > However, just out of curiosity, what might be a use-case of the selector? Was it added...

> Understood, that is super! I think it would make sense to have a selector API on the `useCurrentEditor` hook as well, or another hook (perhaps "`useEditorState`" that would accept...