ob.el (1320B)
1 ;;; ob.el --- Working with Code Blocks in Org -*- lexical-binding: t; -*- 2 3 ;; Copyright (C) 2009-2024 Free Software Foundation, Inc. 4 5 ;; Authors: Eric Schulte 6 ;; Keywords: literate programming, reproducible research 7 ;; URL: https://orgmode.org 8 9 ;; This file is part of GNU Emacs. 10 11 ;; GNU Emacs is free software: you can redistribute it and/or modify 12 ;; it under the terms of the GNU General Public License as published by 13 ;; the Free Software Foundation, either version 3 of the License, or 14 ;; (at your option) any later version. 15 16 ;; GNU Emacs is distributed in the hope that it will be useful, 17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of 18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 ;; GNU General Public License for more details. 20 21 ;; You should have received a copy of the GNU General Public License 22 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. 23 24 ;;; Commentary: 25 26 ;;; Code: 27 28 (require 'org-macs) 29 (org-assert-version) 30 31 (require 'org-macs) 32 (require 'org-compat) 33 (require 'org-keys) 34 (require 'ob-eval) 35 (require 'ob-core) 36 (require 'ob-comint) 37 (require 'ob-exp) 38 (require 'ob-table) 39 (require 'ob-lob) 40 (require 'ob-ref) 41 (require 'ob-tangle) 42 43 (provide 'ob) 44 45 ;; Local variables: 46 ;; generated-autoload-file: "org-loaddefs.el" 47 ;; End: 48 49 ;;; ob.el ends here