Romain de Wolff
Romain de Wolff
Could we reopen this? I think Whisper from OpenAI is easy to integrate and would not change the UX. Same recrod button. The key is the amazing accuracy. I switched...
Anyone?
Hey @rznzippy ! Am not using `classy-mst` on my projects. So I cannot provide you any examples.
That looks like a killer feature!
any update on this?
Let's go 🚀
This bug is still here. Inserting html code with a list, tiptap adds paragraph tags on every line. For example: When using `editor.chain().focus().insertContentAt({ x, y }, text).run()` With: ``` const...
This is a codesandbox repo where you can see and reproduce the bug in action: https://codesandbox.io/p/devbox/editor-forked-p376l7?file=%2Fsrc%2FApp.js 1. load it 2. hit the "ADD HTML LIST" button on the top menubar...
I have been able to fix it: Just remove any space between your HTML tags and the layout will be fine.
Sure, I just use regexp to cleanup the HTML code, as follow: ```ts export const cleanHTML = (htmlString) => { // This will remove all the spaces between HTML tags...