Function: org-export-table-row-in-header-p
org-export-table-row-in-header-p is a byte-compiled function defined
in ox.el.gz.
Signature
(org-export-table-row-in-header-p TABLE-ROW INFO)
Documentation
Non-nil when TABLE-ROW is located within table's header.
INFO is a plist used as a communication channel. Always return nil for special rows and rows separators.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defun org-export-table-row-in-header-p (table-row info)
"Non-nil when TABLE-ROW is located within table's header.
INFO is a plist used as a communication channel. Always return
nil for special rows and rows separators."
(and (org-export-table-has-header-p
(org-element-lineage table-row 'table) info)
(eql (org-export-table-row-group table-row info) 1)))