Replies: 5 comments 2 replies
-
Why don't you eprint |
Beta Was this translation helpful? Give feedback.
-
Ah good idea! I made a test file: # Test
blah [[Notes for Week 1.md|IBM]]
and def convert_links(key, value, format, meta):
if format == "latex":
eprint(key) This resulted in the output
so it does not seem that the link is recognized. |
Beta Was this translation helpful? Give feedback.
-
I tried with the test file:
as the lack of a space in the URL seemd to make a difference., this produced the AST:
|
Beta Was this translation helpful? Give feedback.
-
Here's what I see:
Either you're using an old version of pandoc without this extension, or you forgot to specify the extension? |
Beta Was this translation helpful? Give feedback.
-
I am using Pandoc 8.1 from https://github.com/jgm/pandoc/releases/download/3.8/pandoc-3.8-1-amd64.deb . |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to manipulate markdown wikilinks when converting to LaTeX, and I am calling pandoc with
-f markdown+wikilinks_title_after_pipe+attributes+fenced_divs
. I have written the python filter:However, when running the filter on markdown file with links, I get no output, i.e. I get no notice saying BLAH....
Best, Mads
Beta Was this translation helpful? Give feedback.
All reactions