diff --git a/doc/changelog.d/1093.miscellaneous.md b/doc/changelog.d/1093.miscellaneous.md new file mode 100644 index 0000000000..e68ec4b40d --- /dev/null +++ b/doc/changelog.d/1093.miscellaneous.md @@ -0,0 +1 @@ +Increase pr deployed docs \ No newline at end of file diff --git a/doc/changelog.d/1094.miscellaneous.md b/doc/changelog.d/1094.miscellaneous.md new file mode 100644 index 0000000000..d10acbdb86 --- /dev/null +++ b/doc/changelog.d/1094.miscellaneous.md @@ -0,0 +1 @@ +Doc: fix docs issues \ No newline at end of file diff --git a/doc/source/_templates/autosummary/class.rst b/doc/source/_templates/autosummary/class.rst index e5f3fe12b7..2ad619df64 100644 --- a/doc/source/_templates/autosummary/class.rst +++ b/doc/source/_templates/autosummary/class.rst @@ -1,5 +1,9 @@ .. vale off +{% set excluded_attrs = ['real', 'imag', 'numerator', 'denominator'] %} + +{% set excluded_methods = ['bit_length', 'conjugate', 'from_bytes', 'to_bytes', 'bit_count', 'as_integer_ratio', 'is_integer'] %} + {{ name | escape | underline}} .. currentmodule:: {{ module }} @@ -12,8 +16,9 @@ .. autosummary:: :toctree: + {% for item in methods %} - {% if item != '__init__' %}{{ name }}.{{ item }}{% endif %} +    {% if item != '__init__' %}{{ name }}.{{ item }}{% endif %} {%- endfor %} {% endif %} {% endblock %} @@ -25,7 +30,7 @@ .. autosummary:: :toctree: {% for item in attributes %} - {{ name }}.{{ item }} + {% if item not in excluded_attrs %}{{ name }}.{{ item }}{% endif %} {%- endfor %} {% endif %} {% endblock %} @@ -35,4 +40,4 @@ {{ fullname }} -.. vale on \ No newline at end of file +.. vale on diff --git a/doc/source/api/index.rst b/doc/source/api/index.rst index 708ca74655..33d8239eb7 100644 --- a/doc/source/api/index.rst +++ b/doc/source/api/index.rst @@ -11,4 +11,5 @@ This section gives an overview of all API classes, methods, and parameters prese ansys.meshing.prime ansys.meshing.prime.examples + ansys.meshing.prime.graphics ansys.meshing.prime.lucid