Function: org-export-table-row-ends-header-p
org-export-table-row-ends-header-p is a byte-compiled function defined
in ox.el.gz.
Signature
(org-export-table-row-ends-header-p TABLE-ROW INFO)
Documentation
Non-nil when TABLE-ROW is the last 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-ends-header-p (table-row info)
"Non-nil when TABLE-ROW is the last 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-ends-rowgroup-p table-row info)))