vlrevolution

Results 41 comments of vlrevolution

Not sure if it is my user error but it keeps updating while idle like this (this number of logs keeps going forever): ![image](https://github.com/ssssota/svelte-exmarkdown/assets/67480746/14e89da5-52ed-428b-ba83-a1e81a13fae0) Any idea what could be causing?

I am using one

I realize it is deffo user error :D I am forcing reactivity by bad design

Actually testing it more there might be some issue. I will report back soon

It was more or less my own mistake. However, do you reckon it could be possible to not rerendeer the entire parsed md each time the md gets added a...

I managed to solve it with a few wrapper elements for the markdown itself, splitting by header items naively. This way each response that gets long, normally will include a...

But the first render if there are multiple messages to parse is still quite slow and freezes the UI. Could it be possible to achieve without blocking the main thread?...

Maybe we could use webworker to run the parse function in?

https://github.com/ssssota/svelte-exmarkdown/assets/67480746/ccc45b06-bbcd-41b6-86fb-1d80d0a90b26 Just wanted to let you know of my progress: it is indeed possible to use web workers to delegate the rendering off the main thread. Video also shows virtual...

Thank you, I realized that it is simpler than it seemed at first. I will try soon!