Function: org-element-table-cell-interpreter
org-element-table-cell-interpreter is a byte-compiled function defined
in org-element.el.gz.
Signature
(org-element-table-cell-interpreter _ CONTENTS)
Documentation
Interpret table-cell element as Org syntax.
CONTENTS is the contents of the cell, or nil.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defun org-element-table-cell-interpreter (_ contents)
"Interpret table-cell element as Org syntax.
CONTENTS is the contents of the cell, or nil."
(concat " " contents " |"))