-
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: 2 comments 1 reply
-
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.
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).