Skip to content

PR: Fix style issues in rendered page #395

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

Merged
merged 1 commit into from
Feb 28, 2022
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
2 changes: 2 additions & 0 deletions spec/API_specification/array_object.rst
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ Attributes

.. autosummary::
:toctree: generated
:template: property.rst

array.dtype
array.device
Expand All @@ -275,6 +276,7 @@ Methods

.. autosummary::
:toctree: generated
:template: property.rst

array.__abs__
array.__add__
Expand Down
1 change: 1 addition & 0 deletions spec/API_specification/constants.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Objects in API

.. autosummary::
:toctree: generated
:template: attribute.rst

e
inf
Expand Down
1 change: 1 addition & 0 deletions spec/API_specification/searching_functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Objects in API

.. autosummary::
:toctree: generated
:template: method.rst

argmax
argmin
Expand Down
1 change: 1 addition & 0 deletions spec/API_specification/set_functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Objects in API

.. autosummary::
:toctree: generated
:template: method.rst

unique_all
unique_counts
Expand Down
1 change: 1 addition & 0 deletions spec/API_specification/statistical_functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Objects in API

.. autosummary::
:toctree: generated
:template: method.rst

max
mean
Expand Down
1 change: 1 addition & 0 deletions spec/API_specification/utility_functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Objects in API

.. autosummary::
:toctree: generated
:template: method.rst

all
any
5 changes: 5 additions & 0 deletions spec/_templates/attribute.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.. currentmodule:: {{ module }}

{{ name.split('.')[-1] | underline }}

.. autodata:: {{ name }}
5 changes: 5 additions & 0 deletions spec/_templates/property.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.. currentmodule:: {{ module }}

{{ name.split('.')[-1] | underline }}

.. auto{{ objtype }}:: {{ objname }}