whitespaces in filename creating problem
mahadevan opened this issue · 0 comments
mahadevan commented
THis plugin is very useful. I use Hugo to host md files. It works well on filename without spaces but if there is space in the link it gives %20
. THis can be solved by using <>
inside the ()
.
example
[[ This Link ]]
currently gives [This Link](This%20Link)
while
[[ This Link ]]
should give [This Link](<This Link>)
Is there a way to do this ?