From d54c3825a8081bc92fc4449188a261cb97eb47b2 Mon Sep 17 00:00:00 2001 From: Eric Schulte Date: Wed, 30 Mar 2011 23:25:28 -0600 Subject: [PATCH] ob-plantuml: adding eps support -- Thanks to Michael Gauland --- lisp/ob-plantuml.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/ob-plantuml.el b/lisp/ob-plantuml.el index fbebd352c..b57aad68b 100644 --- a/lisp/ob-plantuml.el +++ b/lisp/ob-plantuml.el @@ -62,6 +62,8 @@ This function is called by `org-babel-execute-src-block'." (expand-file-name org-plantuml-jar-path)) (if (string= (file-name-extension out-file) "svg") " -tsvg" "") + (if (string= (file-name-extension out-file) "eps") + " -teps" "") " -p " cmdline " < " (org-babel-process-file-name in-file) " > "