Jules Aguillon

Results 670 comments of Jules Aguillon

For more context: with my configuration, the correct uri would be `gh:ocaml-ppx/ocamlformat`. It cannot be guessed because it's not one of my git remotes. I can think of 2 fixes:...

> A quick fix for that would be to offer you to skip that step so that you can push the tag yourself and leave the rest to `dune-release`. Looks...

It seems that `()` and `^` are wrong in the url: https://url.spec.whatwg.org/#absolute-url-with-fragment-string It also seems that HTML is directly linking to the URL spec ([here](https://html.spec.whatwg.org/multipage/urls-and-fetching.html#parse-a-url)) but seems to allow "Named...

I have an other example where the `indent` option adds a blank line before and after the code block but also adds visible indentation to every lines: ```ocaml open Tyxml.Html...

I've found a similar bug that doesn't involve the `pre` element: https://github.com/ocsigen/tyxml/issues/288 It's less of an edge case but perhaps it can be fixed easily, which would help the `pre`...

I don't think its a problem with whitespace. I think it's because it interprets the `option` tag as if it's in a [select](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option) (or `optgroup`) which require some text. `option`...

@gpetiot BER MetaOCaml is a fork of OCaml. Building OCamlformat with it automatically allows to parse BER syntax, since there is no new AST nodes. This issue is about OCamlformat's...

Having an intermediate ocamlformat-AST would be great at improving the code quality and allowing this. I tried a few times but didn't get the right design yet. This is a...

In that case, the global indentation changed. The second line was correctly aligned, by hand. Should we adjust the indentation in that case ?

I mean, if you wrap everything in a module (so you need to add a level of indentation) and use ocamlformat to do that for you, the doc comments will...