Function: org-export-table-row-starts-header-p
org-export-table-row-starts-header-p is a byte-compiled function
defined in ox.el.gz.
Signature
(org-export-table-row-starts-header-p TABLE-ROW INFO)
Documentation
Non-nil when TABLE-ROW is the first table header's row.
INFO is a plist used as a communication channel.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defun org-export-table-row-starts-header-p (table-row info)
"Non-nil when TABLE-ROW is the first table header's row.
INFO is a plist used as a communication channel."
(and (org-export-table-row-in-header-p table-row info)
(org-export-table-row-starts-rowgroup-p table-row info)))