-
Pandoc 3.4, macOS 14.7.1 I have a Lua filter in my Pandoc data directory, which is
But It seems that in such a case Pandoc won't see a filter:
Am I correct? (Or maybe I simly don't use symlinks correctly.) |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
This should work. Doing something similar worked fine for me in a test I just did. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
John, I know you have more important things to do, but I've been trying to figure this out on my own for about two weeks - and haven't had any success yet. Two weeks ago, you suggested me:
And it worked fine. But then, at some moment, the shell started to complain about missing filters again. The current output of
(Here, Inside Then I do
I receive that "cannot open foo.lua: No such file or directory" error again. What might be going on here? 🤔 |
Beta Was this translation helpful? Give feedback.
OK, looks like you created a symlink within
filters
to your scripts directory. But pandoc doesn't look in subdirectories of thefilters
directory. You could try:That makes the
filters
directory point directry to yourscripts
directory.Alternatively it may work to do what you did but use
-L scripts/filter.lua
(untested).