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
Currently, using version 3.1.8 I'm having a hard time converting a Markdown document with wikilinks to a Markdown document without wikilinks using gfm input format. But at the same time it works if I replace gfm with markdown.
Example source file:
# Test
![[Attachments/test.png]]
And the Pandoc command is like this: pandoc -f gfm+wikilinks_title_after_pipe -t gfm --resource-path='<my-attachments-path' --columns=120 -o out.md in.md
And the result is:
# Test
\![Attachments/test.png](Attachments/test.png "wikilink")
Clarification: wikilinks work fine with gfm, but the wikilinks extensions for gfm/commonmark don't support putting a ! in front of a wikilink to make it an image.
Currently, using version
3.1.8
I'm having a hard time converting a Markdown document with wikilinks to a Markdown document without wikilinks usinggfm
input format. But at the same time it works if I replacegfm
withmarkdown
.Example source file:
And the Pandoc command is like this:
pandoc -f gfm+wikilinks_title_after_pipe -t gfm --resource-path='<my-attachments-path' --columns=120 -o out.md in.md
And the result is:
Related to #8853.
The text was updated successfully, but these errors were encountered: