Debugging filters #819
-
I am using the PlantUML filter. The java and plantuml.jar parts are working, but the expected (generated) .svg files are not found, either in the
How can I turn on debugging messages to see when the filter is invoked (and the output of the java command, etc.)? Is it possible from the |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
You can set Note that we are in the process of implementing native support for |
Beta Was this translation helpful? Give feedback.
-
We print the parameters sent to pandoc during render (you'll see your filter in the One thing to be aware of is that Quarto runs pandoc in the same working directory as the document, so if the Lua filter has expectations about where its data files (or jar file) live relative to the current working directory that could cause a problem. Note that AFAIK LaTeX won't utilize svg files (you need to create pdfs, pngs, or tkiz graphics) |
Beta Was this translation helpful? Give feedback.
-
I got a good PDF finally by using format:
pdf:
pdf-engine: latexmk The For reference, I used It's working nicely so far (although I don't really understand how I fixed it, apart from trying the different options). Thanks for your help! 👍🏼 |
Beta Was this translation helpful? Give feedback.
I got a good PDF finally by using
pdf-engine: latexmk
. It seems all the other options couldn't find the.svg
files that were supposed to be generated by the filter.The
latex-auto-mk
option setting seems to make no difference (true or false).For reference, I used
quarto render --to pdf
to create the pdf, and it goes into the_book
directory.It's working nicely so far (although I don't really understand how I fixed it, apart from trying the different options). Thanks for your help! 👍🏼