Slate – A completely customizable framework for building rich text editors
1–10 of 52 posts
Re: Slate – A completely customizable framework for building rich text editors
#2Is there such a thing out there?
Re: Slate – A completely customizable framework for building rich text editors
#3Been looking for something like this but minus React for _ages_. I'd like our users to build their own RTE according to their needs, having a common data model on every one of them. Is there such a thing out there?
Re: Slate – A completely customizable framework for building rich text editors
#4Re: Slate – A completely customizable framework for building rich text editors
#5Been looking for something like this but minus React for _ages_. I'd like our users to build their own RTE according to their needs, having a common data model on every one of them. Is there such a thing out there?
Re: Slate – A completely customizable framework for building rich text editors
#6No image support? It’s the main thing that’s a pain in the ass to support.
If you start diving deeper you’ll find out that image handling is just super complex and the behaviour is dependant on what you’re building. Then you’ll be happy to have full control about the behaviour with editors like Slate, ProseMirror or Tiptap.
Re: Slate – A completely customizable framework for building rich text editors
#7No image support? It’s the main thing that’s a pain in the ass to support.
There are editors that handle images very well by default, like Quill or Trix. If you start diving deeper you’ll find out that image handling is just super complex and the behaviour is dependant on what you’re building. Then you’ll be happy to have full control about the behaviour with editors like Slate, ProseMirror or Tiptap.
Re: Slate – A completely customizable framework for building rich text editors
#8Been looking for something like this but minus React for _ages_. I'd like our users to build their own RTE according to their needs, having a common data model on every one of them. Is there such a thing out there?
Re: Slate – A completely customizable framework for building rich text editors
#9No image support? It’s the main thing that’s a pain in the ass to support.
Some would need uploads, others just links, then copy and pasting, alt, captions, styling, etc...
Slate makes it easy to extend its core with custom blocks. Now, it's definitely some work but it's actually very intuitive to work with.
Re: Slate – A completely customizable framework for building rich text editors
#10I started using this library several years ago and have eventually had to rework it using prosemirror because I just couldn't keep up with the breaking changes.
Both libraries work in very similar ways, with slate using React for its rendering layer. However Prosemirror has been v1 for quite a while and in retrospect I'd have saved myself a lot of headaches if I'd taken the above warning more seriously.