Skip to content
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
4 changes: 2 additions & 2 deletions template/_quarto.yml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ website:
style: "floating"
contents:
- docs/index.qmd
- CHANGELOG.qmd
- CHANGELOG.md
- CONTRIBUTING.md
- id: design
contents:
Expand All @@ -67,7 +67,7 @@ quartodoc:
parser: google
dynamic: true
renderer:
style: .config/quartodoc.py
style: "quartodoc_style.py"
table_style: description-list
show_signature_annotations: true

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Custom quartodoc renderer that fixes the output of returns and raises sections."""
# ruff: noqa

from __future__ import annotations

Expand Down
Loading