1 ;;; org-babel-init.el --- loads org-babel
3 ;; Copyright (C) 2009 Eric Schulte
5 ;; Author: Eric Schulte
6 ;; Keywords: literate programming, reproducible research
7 ;; Homepage: http://orgmode.org
12 ;; This program is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 3, or (at your option)
17 ;; This program is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
29 ;; for more information see the comments in org-babel.el
34 (require 'org-exp-blocks
)
36 (require 'org-babel-ref
)
37 (require 'org-babel-exp
)
38 (require 'org-babel-table
)
39 (require 'org-babel-comint
)
40 (require 'org-babel-lob
)
41 (require 'org-babel-tangle
)
44 (let ((util-dir (expand-file-name
48 (file-name-directory (or load-file-name buffer-file-name
))))))
49 ;; other versions of htmlize can cause export problems
50 (load (expand-file-name "htmlize.el" util-dir
))
51 ;; the newest version of inf-ruby.el is required by org-babel-ruby.el
52 (load (expand-file-name "inf-ruby.el" util-dir
)))
54 ;; language specific files
55 (add-to-list 'load-path
(expand-file-name "langs" (file-name-directory (or load-file-name buffer-file-name
))))
56 (require 'org-babel-ruby
)
57 (require 'org-babel-python
)
58 (require 'org-babel-sh
)
59 (require 'org-babel-lisp
)
60 (require 'org-babel-R
)
62 (provide 'org-babel-init
)
63 ;;; org-babel-init.el ends here