
Tiptap has a GitHub issue with the list of all the community extensions in the repo where people share extensions that they create. Someone mention...
For further actions, you may consider blocking this person and/or reporting abuse
Jeet Mandaliya on April 03, 2022
For further actions, you may consider blocking this person and/or reporting abuse
Awesome work, thank you!
Any ideas on how to show the respective comment box on the same height as the line where the comment appears? Currently have tried getting the coordinate for the starting position and adding that to position the element, without much success.
const startPos = editor.view.posAtDOM(commentNode, 0);
const coords = editor.view.coordsAtPos(startPos);
comment.from = startPos;
Thanks for the article, it was the main inspiration for my own implementation, which combines marks and database data as the source of truth - I learned a lot of interesting stuff.
Hi Jeet! many thanks!
How do you set the Mark' style?
giving it an attribute and styling it works just fine github.com/sereneinserenade/tiptap...
Got it! Thank you so much!
Hi Jeet, I am using Tiptap. The editor contain some existing text and images I want to style it . How can I do that?
Hey @rini001, please have a look here at how tiptap styles it, it should be able to do something similar
styles.css
Hi Jeet, I was working on something similar with Tiptap and React. Is there a way to focus on and select the text in the editor when the user clicks a comment from the side panel?
Thanks for writing this Jeet, it was super helpful for me!
Glad it was helpful. Always welcome!
Hey, I have been following your work, it's really awesome.
Would love to see similar article on google docs like page implementation. Keep up the good work