docs(plantuml): add graphviz/dot doctor

This commit is contained in:
M. Yas. Davoodeh 2022-01-27 21:17:07 +03:30 committed by GitHub
parent c6a6f44481
commit 4808313889
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,9 @@
;; java ;; java
(unless (executable-find "java") (unless (executable-find "java")
(warn! "Couldn't find java. PlantUML preview or syntax checking won't work")) (warn! "Couldn't find java. PlantUML preview or syntax checking won't work"))
;; graphviz
(unless (executable-find "dot")
(warn! "Couldn't find dot. PlantUML will only show outputs for sequence and activity diagrams"))
;; plantuml.jar ;; plantuml.jar
(unless (file-exists-p plantuml-jar-path) (unless (file-exists-p plantuml-jar-path)
(warn! "Couldn't find plantuml.jar. Install it with M-x plantuml-download-jar"))) (warn! "Couldn't find plantuml.jar. Install it with M-x plantuml-download-jar")))