Skip to content

Commit c19ec83

Browse files
authored
Merge pull request #79 from machow/fix-sidebar
fix: sidebar now always includes page named index
2 parents df3a68b + 17f4747 commit c19ec83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quartodoc/autosummary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ def _strip_item_dispname(self, items):
543543
# sidebar ----
544544

545545
def generate_sidebar(self, blueprint: layout.Layout):
546-
contents = [f"{self.dir}/{self.out_index}"]
546+
contents = [f"{self.dir}/index{self.out_page_suffix}"]
547547
for section in blueprint.sections:
548548
links = []
549549
for entry in section.contents:

0 commit comments

Comments
 (0)