Function: org-element-table-row-interpreter

org-element-table-row-interpreter is a byte-compiled function defined in org-element.el.gz.

Signature

(org-element-table-row-interpreter TABLE-ROW CONTENTS)

Documentation

Interpret TABLE-ROW element as Org syntax.

CONTENTS is the contents of the table row.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defun org-element-table-row-interpreter (table-row contents)
  "Interpret TABLE-ROW element as Org syntax.
CONTENTS is the contents of the table row."
  (if (eq (org-element-property :type table-row) 'rule) "|-"
    (concat "|" contents)))