summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <schulte.eric@gmail.com>2011-03-30 23:25:28 -0600
committerEric Schulte <schulte.eric@gmail.com>2011-03-30 23:25:28 -0600
commitd54c3825a8081bc92fc4449188a261cb97eb47b2 (patch)
tree70e5114eb79f8890c6c495a140a199e44faed429
parent2f72b3efcb675a97b35240463da40513d0b3727f (diff)
downloadorg-mode-d54c3825a8081bc92fc4449188a261cb97eb47b2.tar.gz
ob-plantuml: adding eps support -- Thanks to Michael Gauland
-rw-r--r--lisp/ob-plantuml.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/ob-plantuml.el b/lisp/ob-plantuml.el
index fbebd35..b57aad6 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)
" > "