Gabriel Radanne

Results 115 issues of Gabriel Radanne

This is WIP. ``` ocaml open Tyxml let%template f ={| Hello {{name}}, You are {{{desc}}} {{#list}} {{foo}} {{name}} {{/list}} {{^list}} No foos :( {{/list}} |} val f : name:bytes ->...

Currently, this translation module is hardcoded in `js_of_ocaml` and is quite partial (according to @hhugo). Given the new reflect mechanism we have in tyxml, it seems like it would be...

enhancement
syntax extension
html & svg standard

Aria (https://www.w3.org/TR/wai-aria/) is the accessibility standard for HTML. It allows to add various annotations on HTML nodes wrt accessibility. Since https://github.com/ocsigen/tyxml/pull/172, we have primitive support for `a_role` on all html...

enhancement
html & svg standard

Editing html with the ppx is ... a bit annoying. - You don't get any fancy html handling/coloring. It would be nice to have something for that. - Emacs: I...

enhancement
syntax extension

There has been several request of a templating method in tyxml. Also, with the various other ppx coming, finally cleaning up the syntax extension question might be a good idea....

enhancement
syntax extension

Here is an example of something that doesn't work: ``` ocaml let mytitle = [%html5 "A Fabulous Web Page" ] let mypage = [%html5 " "mytitle" " ] ``` Error...

enhancement
syntax extension

Consistency is not W3C's strong point, but it's made worse in tyxml. The main pain point is dashes, since they are not valid in ocaml's identifiers. So a more formal...

html & svg standard
breaking

While working with the ppx, I noticed something ... strange. ``` ocaml # let x = Html5.Xml.W.nil () ;; val x : '_a list = [] # let x :...

bug
typing

Currently, `Xml_iter` is very crude and not very used. I would like to both improve the functionality and deprecate the current interface. We can do that by providing a way...

enhancement