back

by toddmorey·2y ago·view on hn ↗
This isn't clear to me, either, and it also seems from the docs like images, videos, and formulas are the only embeddable content types. However, elsewhere they say "Quill exposes its own document model, a powerful abstraction over the DOM, allowing for extension and customization. The upper limit on the formats and content Quill can support is unlimited. Users have already used it to add embedded slide decks, interactive checklists, and 3D models."

I wish they had a page covering what it takes to create a custom content type for the Quill DOM.

1 comments
I developed a project that went deep into quill and its capabilities.

It's relatively straightforward to develop little widgets that can plug into the renderer. I did it for several classes of healthcare information, with "smart links" with embedded icons for things like appointments, medications, etc...

Even better, I was able to use vanilla web components for the markup that got embedded, and quill was able to use it just fine.

Was a huge success and worked great.

That's awesome news! Will have to investigate the renderer plugin model.