Browse Source

ob-ditaa: specify utf8 data by default (default :java header argument)

* lisp/ob-ditaa.el (org-babel-default-header-args:ditaa): Specify utf8
  content by default with "-Dfile.encoding=UTF-8".
Eric Schulte 14 years ago
parent
commit
1a68794fdc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/ob-ditaa.el

+ 1 - 1
lisp/ob-ditaa.el

@@ -40,7 +40,7 @@
 (require 'ob)
 
 (defvar org-babel-default-header-args:ditaa
-  '((:results . "file") (:exports . "results"))
+  '((:results . "file") (:exports . "results") (:java . "-Dfile.encoding=UTF-8"))
   "Default arguments for evaluating a ditaa source block.")
 
 (defvar org-ditaa-jar-path)