Skip to content

Commit e6e1202

Browse files
committed
feat: Builder accepts out_index argument
1 parent 2cefa2e commit e6e1202

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

quartodoc/autosummary.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ def __init__(
142142
dir: str = "reference",
143143
title: str = "Function reference",
144144
renderer: "dict | Renderer | str" = "markdown",
145+
out_index: str = None,
145146
):
146147
self.validate(sections)
147148

@@ -159,6 +160,9 @@ def __init__(
159160

160161
self.renderer = Renderer.from_config(renderer)
161162

163+
if out_index is not None:
164+
self.out_index = out_index
165+
162166
def build(self):
163167
"""Build index page, sphinx inventory, and individual doc pages."""
164168

0 commit comments

Comments
 (0)