Skip to content

Commit

Permalink
fix: Let's also apply the former fix to the option html_output.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeioth committed May 31, 2024
1 parent e821fdf commit 5fb6755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/markmap/utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ M.reset_arguments = function()
local arguments = {}
if config.html_output ~= "" then -- if html_output is "", don't pass the parameter
table.insert(arguments, "-o")
table.insert(arguments, config.html_output)
table.insert(arguments, '"' .. config.html_output .. '"')
end
if config.hide_toolbar then table.insert(arguments, config.hide_toolbar) end
return arguments
Expand Down

0 comments on commit 5fb6755

Please sign in to comment.