agathauy / wikilinks-to-mdlinks-obsidian

An Obsidian md plugin which allows for the conversion of individually selected wikilinks to markdown links, and vice versa.
105 stars 13 forks source link

whitespaces in filename creating problem #15

Open mahadevan opened 1 year ago

mahadevan commented 1 year ago

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 ?