I've been able to convert all html in a folder to Markdown using: find ./ -iname "*.html" -type f -exec sh -c 'pandoc "${0}" -o "${0%.html}.md"' {} \; I'm now trying to convert all pdf in a folder to Markdown using a similar approach: find ./ -iname "*.pdf" -type f -exec sh -c 'pandoc "${0}" -o "${0%.html}.md"' {} \; All that happens when I trigger the same for pdf conversion is terminal then says: dquote> The PDF isn't converted to Markdown. I'm a terminal/Pandoc newb so maybe it's different for PDF? I have installed Mactex using Brew install librsvg python homebrew/cask/basictex *Do I have to do a full pdflatex install, or is there a better formula here? Thanks!* -- You received this message because you are subscribed to the Google Groups "pandoc-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/846e351a-a762-4c7d-8026-6fb700893f44n%40googlegroups.com.