You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So to workaround a missing feature of Pandoc's markdown reader, I implemented a post converter that took text like [[link]] and converted it to a link.
However, the markdown reader converts [[actual-recognisable-link]] into '[[', Link(...), ']]' which breaks my converter.
What really needs to happen is that the Pandoc markdown reader grow the ability to handle a vimwiki link and thus I won't need my post document pandoc processor to convert the str to a link. It seems like the better solution.
The text was updated successfully, but these errors were encountered:
So to workaround a missing feature of Pandoc's markdown reader, I implemented a post converter that took text like [[link]] and converted it to a link.
However, the markdown reader converts [[actual-recognisable-link]] into '[[', Link(...), ']]' which breaks my converter.
What really needs to happen is that the Pandoc markdown reader grow the ability to handle a vimwiki link and thus I won't need my post document pandoc processor to convert the str to a link. It seems like the better solution.
The text was updated successfully, but these errors were encountered: