PancakeInvaders2
PancakeInvaders2
Cool ! I'll get started this weekend then
I'm almost done with the parser, I'm doing some tests. In one test, I'm starting with some input html, translating it to j2html with the tool I wrote, executing and...
Also a few attributes have small issues: The attribute 'autocomplete', as in input().withCondAutocomplete(true), seems to be considered a boolean by j2html, it takes a boolean param. But the mozilla docs...
yes that seems to be what it is that poses some questions in terms of code generation though let's say I'm receiving the input ``` Hello world ``` The text...
Thanks, I implemented that. I'm preparing the pull request
The actual work is done, the code in the PR is usable https://github.com/tipsy/j2html/pull/226 In the discussion it ended up being a lot of code to maintain, so the idea is...
I used kotlin multiplatform to write the converter so that it's in a language that is type-safe, null-safe, and generally nice to work with while able to compile to javascript...
The actual converter logic is in commonMain, in Converter.kt, it uses the library KSoup to read the html. How each attributes is supported in configured in SupportedJ2HtmlAttributes.kt, this file may...
Is this question directed at me ? I wouldn't know, I suppose that's for you and @sembler to decide