Skip to content
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

More revisions #29

Merged
merged 5 commits into from
Dec 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed docs/_static/images/apple-icon-152x152.png
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/admonitions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ other sphinx extensions to get similar (and more customizable) results.
.. dropdown:: We endorse the sphinx-design extension!
:icon: package-dependents
:animate: fade-in-slide-down
:class-title: sd-text-primary sd-outline-primary sd-fs-6
:class-title: sd-text-primary sd-outline-primary
:class-container: sd-outline-danger

.. card:: You can do some pretty cool stuff with the :bdg-info-line:`sphinx-design extension`.
Expand Down
26 changes: 17 additions & 9 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@
# material theme options (see theme.conf for more information)
html_theme_options = {
"icon": {
"logo": "material/library",
"repo": "fontawesome/brands/github",
},
"site_url": "https://jbms.github.io/sphinx-immaterial/",
Expand All @@ -94,7 +93,6 @@
"edit_uri": "blob/main/docs",
# "google_analytics": ["UA-XXXXX", "auto"],
"globaltoc_collapse": True,
"globaltoc_depth": -1,
"features": [
# "navigation.expand",
# "navigation.tabs",
Expand Down Expand Up @@ -126,26 +124,36 @@
},
},
],
}
"version_dropdown": True,
"version_info": [
{
"version": "https://sphinx-immaterial.rtfd.io",
"title": "ReadTheDocs",
"aliases": []
},
{
"version": "https://jbms.github.io/sphinx-immaterial",
"title": "Github Pages",
"aliases": []
},
],
} # end html_theme_options

html_last_updated_fmt = ""
html_use_index = True
html_domain_indices = True

# ---- Other documentation options -------------------------

language = "en"
todo_include_todos = True
nbsphinx_execute = "always"
nbsphinx_kernel_name = "python3"

extlinks = {
"duref": (
"http://docutils.sourceforge.net/docs/ref/rst/" "restructuredtext.html#%s",
"http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#%s",
"",
),
"durole": ("http://docutils.sourceforge.net/docs/ref/rst/" "roles.html#%s", ""),
"dudir": ("http://docutils.sourceforge.net/docs/ref/rst/" "directives.html#%s", ""),
"durole": ("http://docutils.sourceforge.net/docs/ref/rst/roles.html#%s", ""),
"dudir": ("http://docutils.sourceforge.net/docs/ref/rst/directives.html#%s", ""),
}


Expand Down
Loading