Variable: org-plantuml-exec-mode
org-plantuml-exec-mode is a customizable variable defined in
ob-plantuml.el.gz.
Value
jar
Documentation
Method to use for PlantUML diagram generation.
jar means to use java together with the JAR.
The JAR can be configured via org-plantuml-jar-path.
plantuml means to use the PlantUML executable.
The executable can be configured via org-plantuml-executable-path.
You can also configure extra arguments via org-plantuml-args.
This variable was added, or its default value changed, in Org version
9.4.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ob-plantuml.el.gz
(defcustom org-plantuml-exec-mode 'jar
"Method to use for PlantUML diagram generation.
`jar' means to use java together with the JAR.
The JAR can be configured via `org-plantuml-jar-path'.
`plantuml' means to use the PlantUML executable.
The executable can be configured via `org-plantuml-executable-path'.
You can also configure extra arguments via `org-plantuml-args'."
:group 'org-babel
:package-version '(Org . "9.4")
:type 'symbol
:options '(jar plantuml))