Procházet zdrojové kódy

Docbook export: Support ditaa images

Patch by Dale Smith.
Carsten Dominik před 16 roky
rodič
revize
21e08a117d
2 změnil soubory, kde provedl 8 přidání a 2 odebrání
  1. 6 0
      contrib/ChangeLog
  2. 2 2
      contrib/lisp/org-exp-blocks.el

+ 6 - 0
contrib/ChangeLog

@@ -1,3 +1,9 @@
+2009-05-10  Carsten Dominik  <carsten.dominik@gmail.com>
+
+	* lisp/org-exp-blocks.el (org-export-blocks-format-ditaa)
+	(org-export-blocks-format-dot): Support ditaa export also for the
+	docbook exporter.
+
 2009-05-07  Carsten Dominik  <carsten.dominik@gmail.com>
 
 	* lisp/org-special-blocks.el: New file.

+ 2 - 2
contrib/lisp/org-exp-blocks.el

@@ -187,7 +187,7 @@ passed to the ditaa utility as command line arguments."
 			    (org-split-string body "\n")
 			    "\n")))
     (cond 
-     ((or htmlp latexp)
+     ((or htmlp latexp docbookp)
       (with-temp-file data-file (insert body))
       (message (concat "java -jar " org-ditaa-jar-path " " args " " data-file " " out-file))
       (shell-command (concat "java -jar " org-ditaa-jar-path " " args " " data-file " " out-file))
@@ -222,7 +222,7 @@ digraph data_relationships {
 	(args (if (cdr headers) (mapconcat 'identity (cdr headers) " ")))
 	(data-file (make-temp-file "org-ditaa")))
     (cond 
-     ((or htmlp latexp)
+     ((or htmlp latexp docbookp)
       (with-temp-file data-file (insert body))
       (message (concat "dot " data-file " " args " -o " out-file))
       (shell-command (concat "dot " data-file " " args " -o " out-file))