Hi List, 

the docstring should rather say something like:

"CONTENTS is nil if type is 'table.el', non-nil otherwise. 

#+BEGIN_SRC emacs-lisp
(defun org-element-table-interpreter (table contents)
  "Interpret TABLE element as Org syntax.
CONTENTS is nil."
  (if (eq (org-element-property :type table) 'table.el)
      (org-remove-indentation (org-element-property :value table))
    (concat (with-temp-buffer (insert contents) [...]))))
                                      ^^^^^^^^
#+END_SRC

-- 
cheers,
Thorsten



Reply via email to