From 120fb52f5fe21c43fcc7285bac4a9bce8a54a6ec Mon Sep 17 00:00:00 2001 From: Johannes Horner Date: Thu, 21 Dec 2023 19:38:39 +0100 Subject: [PATCH] fix(summary): set correct indentation for list items --- lua/neorg/modules/core/summary/module.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/neorg/modules/core/summary/module.lua b/lua/neorg/modules/core/summary/module.lua index 7438f6f06..cda108784 100644 --- a/lua/neorg/modules/core/summary/module.lua +++ b/lua/neorg/modules/core/summary/module.lua @@ -167,7 +167,8 @@ module.load = function() table.insert( result, table.concat({ - " - {:$", + string.rep(" ", heading_level), + " - {:$", datapoint.norgname, ":}[", lib.title(datapoint.title),