-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for tables #893
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to caniuse, only 75% of viewer use a browser which support the colgroup
tag (88% on desktop) (the main culprit is old versions of safari on iOS).
75/88% might be good enough, or not, but since the code is generated, it is as easy to give each td
/th
items of each line the style (or class) that align them, instead of using colgroup
.
Now that ocaml-doc/odoc-parser#11 has been merged, this PR is ready for review! What is the best way to run the tests before the parser is released? Should we temporarily pin |
I added support for alignment in the I tested the The |
I finished support for the The support is restricted to what the target syntax allows, though. Nested tables in man pages won't render, without warning. Depends on ocaml-doc/odoc-parser#14 to pass the tests. |
For me it's good to be merged as soon as ocaml-doc/odoc-parser#14 is merged |
Co-authored-by: Paul-Elliot <[email protected]> Signed-off-by: Paul-Elliot <[email protected]>
Signed-off-by: Paul-Elliot <[email protected]>
Need to be rebased on #950 for CI to pass! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I left a few comments here and there.
I haven't looked in details at the latex and man backends, I personally trust that you've tested that they work.
However, I guess @Octachron might want to have a look? (And perhaps @dbuenzli as well, for the manpage one?)
src/html/generator.ml
Outdated
@@ -192,6 +200,7 @@ let rec block ~config ~resolve (l : Block.t) : flow Html.elt list = | |||
| List (typ, l) -> | |||
let mk = match typ with Ordered -> Html.ol | Unordered -> Html.ul in | |||
mk_block mk (List.map (fun x -> Html.li (block ~config ~resolve x)) l) | |||
| Table t -> mk_block Html.div [ mk_table ~config ~resolve t ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This question might already have been answered (in which case: apologies) but: why is the table nested in a <div>
?
Why is this not mk_block Html.table ~extra_class:"odoc-table" [ mk_rows ~config ~resolve t ]
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it should be mk_block Html.table ~extra_class:"odoc-table" [ mk_rows ~config ~resolve t ]
. I changed it.
src/document/types.ml
Outdated
|
||
type 'a t = { | ||
data : ('a * [ `Header | `Data ]) list list; | ||
align : alignment option list option; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Meh.
This leads to ugly code in the html backend, and some "normalisation" in the latex one.
Perhaps we could normalize when we create the elements, instead of when we render them; so align : alignment option list
?
Furthermore: I assume the polymorphic variants are here because the parser emits them, but:
- I'm not a fan
- If we're already doing some datatype mapping from the parser to odoc types, let's go a bit further:
type alignment = Default | Left | Center | Right type 'a t = { date : ...; align: alignment list; }
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree with removing the polymorphic variant.
I don't mind using Default
instead of None
.
I think I delayed the "compute the number of columns when alignment is unspecified" since it's not always needed, but I agree it's not ideal, so I implemented your proposition, which seems better.
Signed-off-by: Paul-Elliot <[email protected]>
Needs `\usepackage{array}` in the preamble. Signed-off-by: Paul-Elliot <[email protected]>
Fix the rendered file, and add support for alignment (with a seemingly unavoidable bug, see the comment on alignment). Nested tables are not supported. Signed-off-by: Paul-Elliot <[email protected]>
Signed-off-by: Paul-Elliot <[email protected]>
Signed-off-by: Paul-Elliot <[email protected]>
Signed-off-by: Paul-Elliot <[email protected]>
Signed-off-by: Paul-Elliot <[email protected]>
Signed-off-by: Paul-Elliot <[email protected]>
Doing it when loading the doc-comment remove special cases in each backend Signed-off-by: Paul-Elliot <[email protected]>
Signed-off-by: Paul-Elliot <[email protected]>
Signed-off-by: Paul-Elliot <[email protected]>
Signed-off-by: Paul-Elliot <[email protected]>
For alignment to work, you have to add Adding this package is not required if there is no tables with specified alignment in the documentation.
I used |
to be compatible with the master branch of odoc-parser Signed-off-by: Paul-Elliot <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will merge tomorrow morning unless someone disagrees.
I had a quick glance at the latex backend and it looks fine to me (and we can always amend it if we discover issues later). |
Support new syntax added in ocaml-doc/odoc-parser#11