We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
html_output
1 parent e821fdf commit 5fb6755Copy full SHA for 5fb6755
lua/markmap/utils.lua
@@ -30,7 +30,7 @@ M.reset_arguments = function()
30
local arguments = {}
31
if config.html_output ~= "" then -- if html_output is "", don't pass the parameter
32
table.insert(arguments, "-o")
33
- table.insert(arguments, config.html_output)
+ table.insert(arguments, '"' .. config.html_output .. '"')
34
end
35
if config.hide_toolbar then table.insert(arguments, config.hide_toolbar) end
36
return arguments
0 commit comments