Jakub Skałecki
Jakub Skałecki
Yes, I believe if it's provided it should be applied to them all. It might be possible to implement a way out - If function returns `nil` then we could...
Well I don't have any guarantees of it being a list. I'm basically trying to reduce diff of sending live view assigns rendered as json. So in essence it's an...
Ok after working on this on and off I think we're in a much better place. Don't look at commits though, they'll be all squashed anyway 😂 Let's merge and...
Another workaround, slightly better (doesn't touch handler if it has html already) ```js quill.root.addEventListener( 'paste', (ev) => { const text = ev.clipboardData.getData('text/plain') const html = ev.clipboardData.getData('text/html') if (!html && text)...
To be honest I didn't yet try to tackle file uploads with LiveVue. Would be amazing if you could try to make it working. `useLiveVue` returns a hook instance with...
@Maxino22 I've just added composable for file uploads in LiveVue. It should be trivial now to upload files, please check docs! Should be included in 0.7.0 version, released soon
Released in v0.7.0! Please check [docs](https://hexdocs.pm/live_vue/basic_usage.html#file-uploads) for more details.
Probably worth checking how Bun does it. 🤔 Still, there's another approach: `accept` header. Would be the easiest, if somehow agents would prioritize markdown over html when making request.
Mintlify also added this. It seems to be based on accept header, Claude Code prefers text/plain over text/html: https://x.com/rauchg/status/1972347470140379616
Green light from me! I'm not able to do it by myself because of lack of time, but I'd gladly accept all your contributions and help as much as I...