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

feat: testing new static search #1477

Draft
wants to merge 14 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 9 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
1 change: 1 addition & 0 deletions doc/changelog.d/1477.added.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
testing new static search
8 changes: 8 additions & 0 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
import time

from ansys_sphinx_theme import (
ALL_NODES,
PARAGRAPHS,
Revathyvenugopal162 marked this conversation as resolved.
Show resolved Hide resolved
TITLE,
Revathyvenugopal162 marked this conversation as resolved.
Show resolved Hide resolved
ansys_favicon,
ansys_logo_white,
ansys_logo_white_cropped,
Expand Down Expand Up @@ -262,6 +265,11 @@ def intersphinx_pyansys_geometry(switcher_version: str):
"design.fa-build",
]

index_patterns = {
"api/": ALL_NODES,
"examples/": TITLE + PARAGRAPHS,
Revathyvenugopal162 marked this conversation as resolved.
Show resolved Hide resolved
}

# Examples gallery customization
nbsphinx_execute = "always"
nbsphinx_custom_formats = {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ tests-minimal = [
"pytest-xvfb==3.0.0",
]
doc = [
"ansys-sphinx-theme[autoapi]==1.1.5",
"ansys-sphinx-theme[autoapi] @ git+https://github.com/ansys/ansys-sphinx-theme.git@fix/indexing-docs-components",
"ansys-tools-path==0.6.0",
"ansys-tools-visualization-interface==0.4.5",
"beartype==0.19.0",
Expand Down
Loading