Skip to content

Commit c133af5

Browse files
authored
doc: improve static search speed and fix missing module icons (#1971)
1 parent 4fcf544 commit c133af5

File tree

787 files changed

+788
-787
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

787 files changed

+788
-787
lines changed

doc/source/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,8 @@ def reset_servers(gallery_conf, fname, when):
231231
},
232232
"static_search": {
233233
"threshold": 0.5,
234-
"min_chars_for_search": 2,
234+
"limit": 10,
235+
"minMatchCharLength": 2,
235236
"ignoreLocation": True,
236237
},
237238
"ansys_sphinx_theme_autoapi": {

src/ansys/dpf/core/animator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
"""
2424
Animator
25-
========
25+
2626
This module contains the DPF animator class.
2727
2828
Contains classes used to animate results based on workflows using PyVista.

src/ansys/dpf/core/any.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
.. _ref_any:
2525
2626
Any
27-
====================
27+
2828
"""
2929

3030
import traceback

src/ansys/dpf/core/available_result.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
"""
2424
AvailableResult
25-
===============
25+
2626
"""
2727

2828
from typing import List

src/ansys/dpf/core/collection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# -*- coding: utf-8 -*-
2424
"""
2525
Collection
26-
===============
26+
2727
"""
2828

2929
from __future__ import annotations

src/ansys/dpf/core/collection_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
"""
2424
CollectionBase
25-
==============
25+
2626
Contains classes associated with the DPF collection.
2727
2828
"""

src/ansys/dpf/core/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
"""
2424
Common
25-
======
25+
2626
2727
.. autoclass:: locations
2828
:members:

src/ansys/dpf/core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
"""
2424
Operator Configuration
25-
======================
25+
2626
"""
2727

2828
import functools

src/ansys/dpf/core/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
"""
2424
Core
25-
====
25+
2626
"""
2727

2828
import os

src/ansys/dpf/core/custom_container_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
"""
2424
CustomContainerBase
25-
===================
25+
2626
This module contains the `CustomContainerBase` class, which serves as a base
2727
for creating wrappers around `GenericDataContainer` objects.
2828

0 commit comments

Comments
 (0)