-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Teach Jekyll to ignore fewer Python API docs
Signed-off-by: Patrick M. Niedzielski <[email protected]>
- Loading branch information
1 parent
48ec209
commit 7d5fce3
Showing
1 changed file
with
10 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,11 +47,20 @@ exclude: | |
# theme test code | ||
- fixtures/ | ||
|
||
# Jekyll ignores files whose name begins with an underscore by default, yet the | ||
# Python SDK API documentation generated by Sphinx creates many of these. We | ||
# have to explicitly include each such file here or it will not be copied into | ||
# the GitHub Pages. | ||
include: | ||
- _static | ||
- _modules | ||
- _sources | ||
- _sphinx_javascript_frameworks_compat.js # Required for the Python SDK API documentation | ||
- _sphinx_javascript_frameworks_compat.js | ||
- _enums.html | ||
- _messages.html | ||
- _monitors.html | ||
- _session.html | ||
- _timeouts.html | ||
|
||
# Set a path/url to a logo that will be displayed instead of the title | ||
logo: "/assets/images/Asset [email protected]" | ||
|