Reeto Chatterjee
Reeto Chatterjee
I tried alacritty 0.3.3 and a75e9493449d90b54a140b76f6a96b684784a059 (Arch Linux; i3-gaps) and the issue persisted for me. I also tried termite and ran into the issue there as well. However, I can't...
I thought about this some more and refined the idea a bit. What this boils down to is to support components as props to partially hydrated components. Not all components...
I tried out some of the encoding ideas for a proof-of-concept. Not really in a shareable format yet, but I'll try and setup a branch or something. A few extra...
I created #148 for something tangentially related to the third point. Even if you choose to do it, using `withHydrate` inside a component prop should be an error, because there...
I like the tree-shaking idea as a different way to do hydration with less caveats. However, I don’t think it solves this particular problem. In this case, I want to...
I've made a minimal (hopefully working) PoC [here](https://github.com/ratorx/microsite/tree/ssrhydrate). It currently doesn't work because I can't figure out how to pass the new dependency (`preact-markup`) to `microsite-runtime.js`. But this is the...
The only general solution is base64 (or some other safe serialisation). Otherwise e.g. strings that contain HTML will be rendered by the browser rather than treated as part of the...
Sorry I should have been more clear. I agree that the other solutions would work for the JSON parsing case, but my point is that it's worth doing the safe...
Thanks for adding markdown support! A few of thoughts: * I don’t like the inflexibility of always wrapping the Markdown in an `article`. Is it possible for the default component...
Typescript has a list of [generated DOM types](https://github.com/microsoft/TypeScript/blob/master/src/lib/dom.generated.d.ts) as well as the source code for the [generator](https://github.com/microsoft/TSJS-lib-generator) available. This seems like a good source of definitive APIs for this project....