-
Notifications
You must be signed in to change notification settings - Fork 14
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
[FEATURE] Explicit summary directive alignment #82
Comments
hey @vepain! thanks for your input! I am not sure about this. Wouldn't this be something that is configured by the sphinx template that you use? you could add some custom css, here is an example: https://docs.readthedocs.io/en/stable/guides/adding-custom-css.html |
Thank you @Chilipp for your answer! It seems that only a few customisations are allowed by Moreover, it seems that tables are centered by default by Sphinx, and I can't find a way to align local table not by default (see sphinx-doc/sphinx#4550) <table class="autosummary longtable docutils align-default">
...
</table> Here the Why not allow for one .. autosummary::
:alig: left
... that would produce something like this: <table class="autosummary longtable docutils align-left">
...
</table> I don't have enough CSS and HTML knowledge, so perhaps I miss some points. Thank you for your help! |
Sorry for the second message, I find https://docutils.sourceforge.io/docs/ref/rst/directives.html#tables where the directive Why not get inspired of that for the table generation of |
the problem here @vepain is that the |
my suggestion would have been to add a custom css file html_css_files = [
'css/custom.css',
] and then in table.autosummary {
/** add some alignment css here **/
} |
My bad, I confused your extension with the sphinx builtin. |
Now behaviour
When
autosummary
is used as a directive and not as a directive option, the alignment of the table is centered.Example
gives
Asked feature
Is it possible to left-align the table, for example, with an option under
autosummary
directive please?Versions
python 3.9.5
sphinx 5.3.0
autodocsumm 0.2.9
furo 2022.9.29
Thank you for your work!
The text was updated successfully, but these errors were encountered: