tyxml icon indicating copy to clipboard operation
tyxml copied to clipboard

Build valid HTML and SVG documents

Results 63 tyxml issues
Sort by recently updated
recently updated
newest added

I have a preexisting SVG that I would like to process with the tyxml ppx. However, when doing so I get an error: `Error: Unknown attribute in SVG element: stddeviation`....

Fix https://github.com/ocsigen/tyxml/issues/305.

I've attempted a fix to https://github.com/ocsigen/tyxml/issues/288 but it isn't working in every cases, for example this example is still problematic: ```ocaml p ~a:[ a_class [ "some padding ............................" ] ]...

The following code with indentation enabled renders a line break before the closing ``: ``` some doc .............................. some code of just the right length .... some more doc ```...

Hi, I can't find a way to add the `` tag in a `` one. It seems i have to use the `animation` function (`animate` seems undefined). But the `animation`...

bug

Hello, thanks for this fantastic project! Currently, the `autocomplete` attribute only supports `on` and `off`. The [spec](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-autocomplete) lists many more options. It would be nice if `Tyxml` supported those too!...

Given this code: ```reason "my button" ``` To have a button that isn't disabled, I have to duplicate the code logic or use pure function syntax instead of doing it...

I'm currently using `Unsafe.data` to bring known-good HTML fragments (produced by a reasonable markdown->HTML generator) into the tyxml world. AIUI, that _should_ be okay, but perhaps the current issue demonstrates...