Live data from Hacker News

Ask HN: What is your favorite FOSS WYSIWYG editor?

news.ycombinator.com

1–10 of 54 posts

Ask HN: What is your favorite FOSS WYSIWYG editor?

#1
Used to use trix but my current project is CMS-like, so I think I need better WYSIWYG HTML based editor

atleast I need to be as useful as wordpress article editor

for extra note I think I will built the project using ruby on rails, if anyone have stack suggestions, please tell me I will happy to have that

Re: Ask HN: What is your favorite FOSS WYSIWYG editor?

#7
post #4

I really enjoyed working with Prosemirror/TipTap2. It‘s extremely flexible!

Have you hooked it up to Yjs for realtime collaboration? I'm about to try that. The docs (https://tiptap.dev/guide/collaborative-editing) make it seem fairly straightforward.

Re: Ask HN: What is your favorite FOSS WYSIWYG editor?

#10
post #7
post #4

I really enjoyed working with Prosemirror/TipTap2. It‘s extremely flexible!

Have you hooked it up to Yjs for realtime collaboration? I'm about to try that. The docs ( https://tiptap.dev/guide/collaborative-editing ) make it seem fairly straightforward.

I did it last year. Implementing the server was challenging, only because I was working with a large database of existing documents. The thing about YJS is that it's a data structure itself, which means that your document is going to be a YJS document. I remember thinking "okay so there must be a way to convert the YJS doc into html and write that to the database once the session is over." I never figured that part out, and had to do a bunch of hacky shit to get it to work.

If you're working on a greenfield project it'll probably be easier. And the integration with TipTap itself was simple. I love TipTap.

Post reply on HN