fixes bug with svg output -- Thanks to Rainer M Krug
* lisp/ob-plantuml.el (org-babel-execute:plantuml): fixes bug with svg output
This commit is contained in:
parent
9e21de62c7
commit
ab5d7959d2
|
@ -64,7 +64,7 @@ This function is called by `org-babel-execute-src-block'."
|
|||
(shell-quote-argument
|
||||
(expand-file-name org-plantuml-jar-path))
|
||||
(if (string= (file-name-extension out-file) "svg")
|
||||
"-tsvg" "")
|
||||
" -tsvg" "")
|
||||
" -p " cmdline " < "
|
||||
(org-babel-process-file-name in-file)
|
||||
" > "
|
||||
|
|
Loading…
Reference in New Issue