From e2c8294c807604309294c957b1600e3654598958 Mon Sep 17 00:00:00 2001 From: cassie-nahar-nasa Date: Fri, 10 Oct 2025 11:36:56 -0400 Subject: [PATCH] Fix missing HTML publisher index and matrix links --- doorstop/core/publishers/html.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doorstop/core/publishers/html.py b/doorstop/core/publishers/html.py index ee5b2073..02b05da7 100644 --- a/doorstop/core/publishers/html.py +++ b/doorstop/core/publishers/html.py @@ -109,6 +109,8 @@ def create_index(self, directory, index=INDEX, extensions=(".html",), tree=None) "major": "-", "minor": "", }, + has_index=self.getIndex(), + has_matrix=self.getMatrix(), ) common.write_text(html, path) else: @@ -183,6 +185,8 @@ def create_matrix(self, directory): "major": "-", "minor": "", }, + has_index=self.getIndex(), + has_matrix=self.getMatrix(), ) common.write_text(html, path)