Rajat Kulkarni
Rajat Kulkarni
Bumping this up. Any idea when we'd get this into the framework?
This is a fun one! I haven't ever built out a PWA and I know the steps aren't a lot, so this should be a fun exercise
Thanks! I'll give it a try. I feel the issue with slowness is it tries to reserialise the entire `200k` word for every `onUpdate` that causes it. Tried debouncing it...
@aguingand Any suggestions on how best to improve conversion to markdown for long texts?
Was running into the same issue, but adding `parseOptions` to not `preserveWhitespace` made it work ``` editor.chain() .focus() .deleteRange(range) .insertContent(content, { // content in this case is markdown with lists/task...
So it doesn't strip earlier conversations when sending them for "context". It'd probably be helpful to maybe restrict the last 10-15 chat messages when sending the new message for context,...
Is `evaluate: 'no'` the reason? https://github.com/aarkue/tiptap-math-extension/blob/main/packages/tiptap-math-extension/src/inline-math-node.ts#L131
Ah I think my version had an extra `\` at the beginning? Anyway, is there a way to allow editing without requiring a backspace? Like it the equation was focused?...
@aarkue Can you try pasting stuff from https://tiptap.dev/docs/editor/api/extensions/mathematics#katex-options example and see if it renders automatically? I tried and it doesn't. https://github.com/aarkue/tiptap-math-extension/assets/57321156/34fd5d0a-1165-4d5f-9356-8ab76eed1276
Fair, for now I've gone ahead with the package from Tiptap, but it suffers from re-painting and re-rendering causing the app to slow down when there's a lot, while your...