Skip to content

Commit d767be9

Browse files
committed
fix(markdown): revert
1 parent 798e3ae commit d767be9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lua/noice/text/markdown.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ end
6464
function M.parse(text, opts)
6565
opts = opts or {}
6666
---@type string
67-
text = text:gsub("</?pre>", "```"):gsub("\r", ""):gsub("</?code>", "`")
67+
text = text:gsub("</?pre>", "```"):gsub("\r", "")
68+
-- text = text:gsub("</?code>", "`")
6869
text = M.html_entities(text)
6970

7071
---@type Markdown

0 commit comments

Comments
 (0)