Skip to content
Draft
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
7 changes: 7 additions & 0 deletions meson.options
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ option(
description: 'Build the HTML / PDF documentation'
)

option(
'legacy-docs',
type: 'boolean',
value: false,
description: 'Use the legacy doc build pipeline (build-docs.py)'
)

#
# Features
#
Expand Down
7 changes: 7 additions & 0 deletions src/doc/common/templates-furo/autosummary/base.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.. _{{ fullname }}:

{{ fullname | escape | underline}}

.. currentmodule:: {{ module }}

.. auto{{ objtype }}:: {{ objname }}
21 changes: 21 additions & 0 deletions src/doc/common/templates-furo/autosummary/module.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.. _{{ fullname }}:

{{ fullname | escape | underline}}

.. automodule:: {{ fullname }}
:members:
:undoc-members:
:show-inheritance:

{%- block modules %}
{%- if modules %}
.. rubric:: Modules

.. autosummary::
:toctree:
:recursive:
{% for item in modules %}
{{ item }}
{%- endfor %}
{% endif %}
{%- endblock %}
Loading
Loading