Installing filters - best practice for file locations? #10210
Unanswered
AndyClifton
asked this question in
Q&A
Replies: 1 comment
-
From the manual:
An addition, for executable (non-Lua) filters:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I've written a filter for pandoc that I would like to use in multiple different file conversions.
Currently I place the filter in the same directory as the source files, and then call pandoc using something like this:
$> pandoc ... --filter filters/name_of_filter
where
filters
is a subdirectory.I'd like to just maintain a single copy of my filters.
Q: Does pandoc have a default location where it checks for filters where I could deploy my filter? I guess I can choose this myself by giving an absolute path to the filter, but is there a best practice for this?
Beta Was this translation helpful? Give feedback.
All reactions