Table zebra stripes using Documenter.jl

Hi,

I’m curious how to make tables with zebra stripes, using Documenter and Github Actions, like here:
http://gadflyjl.org/stable/man/plotting/

1 Like

I second this question. :+1:

Use Documenter pre 0.24.

Or you can add the following in a custom CSS file:

tr:nth-child(2n) {
    background-color: #f3f6f6;
}
2 Likes