-
-
Notifications
You must be signed in to change notification settings - Fork 25.9k
DOC fix wrong indentations in the documentation that lead to undesired blockquotes #28107
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
Conversation
Co-authored-by: Guillaume Lemaitre <g.lemaitre58@gmail.com>
Co-authored-by: Guillaume Lemaitre <g.lemaitre58@gmail.com>
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.
LGTM apart of those glitches.
Thanks for the review @glemaitre! Seems that these are mostly caused by me letting VSCode automatically dedent without double checking (shouldn't have been lazy lol). I've applied your suggested changes and will make sure to double check as well. |
I got trapped as well with this one in the past :) |
Merging. I think it would help for the website issue. |
Thanks so much! It definitely would. |
…d blockquotes (scikit-learn#28107) Co-authored-by: Guillaume Lemaitre <g.lemaitre58@gmail.com>
…d blockquotes (#28107) Co-authored-by: Guillaume Lemaitre <g.lemaitre58@gmail.com>
…d blockquotes (scikit-learn#28107) Co-authored-by: Guillaume Lemaitre <g.lemaitre58@gmail.com>
Reference Issues/PRs
None, or maybe #28084.
What does this implement/fix? Explain your changes.
There are many places in the documentation where we use wrong indentation, leading to blockquotes. Since the current theme does not have a background or other visible styling for blockquotes it cannot really be observed, but if we switch to a theme (e.g.
pydata-sphinx-theme
) that does have a background for blockquotes this would be a problem.Theoretically the current changes in this PR should not change the look of the current website, but is intended to solve some of the problems that the work proposed in #28084 may encounter.
This is indeed a huge PR with thousands of lines of modification, but it is mostly (if not all) about fixing indentation, so I hope it is not too hard to review.