From e9f21f2e83b9ecb03ec1bec02a97931d81842e49 Mon Sep 17 00:00:00 2001 From: Thibaut Cuvelier Date: Sun, 20 Nov 2022 00:12:06 +0100 Subject: [PATCH] InsetIndex: improve formatting of resulting XHTML There was no line feed before the closing for entries, which was inconsistent with the other block tags. --- src/insets/InsetIndex.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/insets/InsetIndex.cpp b/src/insets/InsetIndex.cpp index 54757a7a97..181c99b43e 100644 --- a/src/insets/InsetIndex.cpp +++ b/src/insets/InsetIndex.cpp @@ -1783,6 +1783,7 @@ void outputIndexPage(XMLStream & xs, const IndexNode* root_node, unsigned depth } entry_number += 1; } + xs << xml::CR(); } if (!root_node->entries.empty() && !root_node->children.empty()) { -- 2.39.5