Closed ElPiloto closed 3 years ago
Had aliased vimwiki_markdown to another (python-based) binary. This is working fine, sorry for the noise and thanks for the great tool :)
Hey @ElPiloto , glad you got it sorted. I don't think I ever actually checked the use with VimwikiDiaryGenerateLinks
, so, I'm glad it's working with it ;)
My setup
and
gem install vimwiki_markdown
running on lunarvim (layer on top of neovim 0.5).
Issue
VimwikiDiaryGenerateLinks
creates links in the diary index as[SomeDiaryEntry][SomeDiaryDate.md]
. When I subsequently runVimwiki2HTML
ondiary.md
, the link indiary.html
points toSomeDiaryDate.md.html
instead ofSomeDiaryDate.html
as expected. This results in a broken link since onlySomeDiaryDate.html
exists.If I manually remove the
.md
from the link in the diary index markdown file (i.e.[SomeDiaryDate.md]
becomes[SomeDiaryDate]
, then everything works as expected. But I don't believe vimwiki is in error here by including the.md
extension at the end of the generated link.