Function: org-odt-table-first-row-data-cells
org-odt-table-first-row-data-cells is a byte-compiled function defined
in ox-odt.el.gz.
Signature
(org-odt-table-first-row-data-cells TABLE INFO)
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
;;;; Table
(defun org-odt-table-first-row-data-cells (table info)
(let ((table-row
(org-element-map table 'table-row
(lambda (row)
(unless (eq (org-element-property :type row) 'rule) row))
info 'first-match))
(special-column-p (org-export-table-has-special-column-p table)))
(if (not special-column-p) (org-element-contents table-row)
(cdr (org-element-contents table-row)))))