Function: org-babel-read-table

org-babel-read-table is a byte-compiled function defined in ob-core.el.gz.

Signature

(org-babel-read-table)

Documentation

Read the table at point into emacs-lisp.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ob-core.el.gz
(defun org-babel-read-table ()
  "Read the table at point into emacs-lisp."
  (mapcar (lambda (row)
            (if (and (symbolp row) (equal row 'hline)) row
              (mapcar (lambda (el) (org-babel-read el 'inhibit-lisp-eval)) row)))
          (org-table-to-lisp)))