plantuml_run | R Documentation |
The in the package installation included plantuml
binary is executed using
the provided java and plantuml commands. This is effectively a wrapper around
system2()
with some values set to run plantuml
.
plantuml_run(
x = NULL,
file = "",
plantuml_jar = getPlantumlOption("jar_name"),
plantuml_opt = getPlantumlOption("plantuml_opt"),
java_bin = getPlantumlOption("java_bin"),
java_opt = getPlantumlOption("java_opt"),
wait = FALSE
)
x |
plantuml code to draw the UML graph |
file |
file name, including extension, to which the generated plantUML graph
should be saved. The extension determines the format of the graph.
If |
plantuml_jar |
path and name of the plantuml jar file. The dafault is read from
|
plantuml_opt |
options for the call of |
java_bin |
path to the |
java_opt |
options for the call of |
wait |
if |
if wait is TRUE
the pid of the process started. Otherwise the result from the call to system2()
## Not run:
# This will take some time when you run it
# for the first time as it will download \code{plantuml.jar}
plantuml_run()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.