Pavel Martynov
Pavel Martynov
@krausest no worries, I just reviewed them, looks fine. Thanks for update!
Hey, your codesandbox uses 0.1.8 version (probably because I haven't updated it in mine) If you check ver 0.1.15 this example works fine.
@Dan-Do I see. That was interesting discovery, your `` elements seems correct HTML5 format but parser failed to parse it, since it was made to parse XHTML where it would...
If this is the case of reformatting on save, then looks like Codesandbox formatter also formats `html` literals in XHTML style.
For now I'd use XHTML format in your code. I have to review and weight on how fix complicate parser implementation. Also, I see there is another issue where className...
> Also, I see there is another issue where className "active" leaks into markup instead of applying to element attribute. That is definitely an issue that I have to fix....
Yes, as stated in docs, only one binding per attribute allowed. There are different opinions on this topic, but I lean more to the JSX-like semantic, and looking forward to...
Unfortunately it's not that easy. What are other issues you have? Basically, if you have problems you can send new issues here (since I don't currently have other communication channels)....
1) This lib is closer to VDOM than to native HTML, so `html` does not return dom node, but TemplateNode, that can be rendered into given container. Renderer designed to...
> When you enter text on the input and switch between two components, the value is reset. This is expected behavior, when you switch component, you effectively unmount previous one...