-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Generating full documentation requires creating the example_thumbs
first
#2532
Comments
This is probably just something I never noticed because |
You're right (now I understood after your clarification), it's as simple as creating the |
make html
twiceexample_thumbs
first
This is a little hacky, but including the thumbnail images in the build seems otherwise complicated because they are written into raw html source with an <img> tag, not using the sphinx image directive. Fixes #2532
This is a little hacky, but including the thumbnail images in the build seems otherwise complicated because they are written into raw html source with an <img> tag, not using the sphinx image directive. Fixes #2532
Hi! I am figuring out how to build seaborn docs on Read the Docs, which indeed requires some care. I almost have it, but I noticed a weird thing, perhaps because I'm doing something wrong.
The
doc/README.md
states thatNB_KERNEL="python3 make notebooks html
should work. However, this command produces this warning:and then, even though the
example_thumbs
directory is next to the sources, the thumbnails are not present in_build/html
(presumably because they were not there at the beginning of the build).Then, running
make html
a second time fixes this, and all the thumbnails appear in_build/html/static
.Edit: it's enough with creating the
example_thumbs
directory first, see discussion belowAm I missing something? I assume this is either (a) something I'm doing wrong, (b) something you decided on purpose, despite being undocumented or (c) a necessary minor annoyance given the current workflow that did not make it to the README.
The text was updated successfully, but these errors were encountered: