File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -39,14 +39,15 @@ KEYWORD-PLIST contains parameters from the chatu line."
39
39
(input-path (chatu-common-with-extension input-path " puml" ))
40
40
(output-path (plist-get keyword-plist :output-path ))
41
41
(input-dir (file-name-directory input-path))
42
- (page (plist-get keyword-plist :page )))
42
+ (page (plist-get keyword-plist :page ))
43
+ (output-ext (plist-get keyword-plist :output-ext )))
43
44
(concat
44
45
(cond ((eq plantuml-default-exec-mode 'jar )
45
46
(concat " java -Dplantuml.include.path=" input-dir " -jar "
46
47
plantuml-jar-path))
47
48
((eq plantuml-default-exec-mode 'executable )
48
49
" plantuml" ))
49
- " -charset utf-8 -p -tsvg "
50
+ " -charset utf-8 -p -t " output-ext " "
50
51
(when page (concat " -pipeimageindex " page))
51
52
" < "
52
53
input-path
You can’t perform that action at this time.
0 commit comments