From 9185a777f4b425e209bfde00b124f4bf1d7e090d Mon Sep 17 00:00:00 2001 From: pat-alt Date: Tue, 15 Apr 2025 10:52:50 +0200 Subject: [PATCH] ensuring comments are shown in render mode --- lua/custom/plugins/render-markdown.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/custom/plugins/render-markdown.lua b/lua/custom/plugins/render-markdown.lua index b3a5feb1..b0422e48 100644 --- a/lua/custom/plugins/render-markdown.lua +++ b/lua/custom/plugins/render-markdown.lua @@ -9,6 +9,9 @@ return { config = function() require('render-markdown').setup { file_types = { 'markdown', 'quarto' }, + html = { + comment = { conceal = false }, + }, } end, }