diff options
-rw-r--r-- | smart-documents.org | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/smart-documents.org b/smart-documents.org index 441fa3d..f9dabfe 100644 --- a/smart-documents.org +++ b/smart-documents.org @@ -1140,20 +1140,18 @@ The following languages can be used inside =SRC= blocks, in view of being executed by the Org Babel backend upon document export. #+BEGIN_SRC emacs-lisp :tangle yes - (setq org-babel-load-languages - '((shell . t) - (python . t) - (plantuml . t) - (emacs-lisp . t) - (awk . t) - (ledger . t) - (gnuplot . t) - (latex . t))) - (org-babel-do-load-languages - 'org-babel-load-languages '((C . t) - (shell . t) - (gnuplot . t))) + 'org-babel-load-languages + '((shell . t) + (python . t) + (ditaa . t) + (plantuml . t) + (emacs-lisp . t) + (awk . t) + (ledger . t) + (latex . t) + (C . t) + (gnuplot . t))) #+END_SRC ** Agenda |