Skip to content

Commit 5fb6755

Browse files
committed
fix: Let's also apply the former fix to the option html_output.
1 parent e821fdf commit 5fb6755

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/markmap/utils.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ M.reset_arguments = function()
3030
local arguments = {}
3131
if config.html_output ~= "" then -- if html_output is "", don't pass the parameter
3232
table.insert(arguments, "-o")
33-
table.insert(arguments, config.html_output)
33+
table.insert(arguments, '"' .. config.html_output .. '"')
3434
end
3535
if config.hide_toolbar then table.insert(arguments, config.hide_toolbar) end
3636
return arguments

0 commit comments

Comments
 (0)