Gabriel Radanne

Results 318 comments of Gabriel Radanne

I can't reproduce, did you changed something ? Can you give details about your setup ?

Pretty sure it's because you are using the stable version and not the dev version.

The change to the signature of `Xml.S` is a rather big breaking change (it breaks not only js_of_ocaml, but also eliom, and all users of the functorial API). I feel...

Well, you can always implement it in term of `string_attrib`. It has less good properties, but it should be sufficient in practice for now.

oups, looks like I missed these bug reports and PRs. @rand00 Can you make a PR with the package of everything ?

Hmm, that's interesting. I didn't remember this syntax being accepted by JSX. `id` isn't really an "optional argument" in the usual meaning of the word. We could expand the code...

Sorry for the very late answer. I don't like the solution of inserting `txt " "` at arbitrary points. I think the solution is indeed to have a list of...

(I'm happy, this is the first time someone complains about tyxml not being strict enough :p) This may be solvable (changing the type machinery can be done in a backward...

@shepard8 Important thing to note is that "a inside a" is only forbidden lazily. `a [a []]` is fine, `body [a [a []]]` is not. That being said, yes, it...

@calimeroteknik the trick is to use type parameters to track a bit precisely what was inside. For instance, the type of `Html.a` can be summarize as ``'a elt list ->...