diff options
-rw-r--r-- | src/Text/Pandoc/App.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/App.hs b/src/Text/Pandoc/App.hs index c26b8e768..206c47b30 100644 --- a/src/Text/Pandoc/App.hs +++ b/src/Text/Pandoc/App.hs @@ -570,6 +570,7 @@ externalFilter ropts f args' d = liftIO $ do ".rb" -> ("ruby", f:args') ".php" -> ("php", f:args') ".js" -> ("node", f:args') + ".r" -> ("Rscript", f:args') _ -> (f, args') else (f, args') unless (exists && isExecutable) $ do |