Function: org-export-table-row-starts-rowgroup-p
org-export-table-row-starts-rowgroup-p is a byte-compiled function
defined in ox.el.gz.
Signature
(org-export-table-row-starts-rowgroup-p TABLE-ROW INFO)
Documentation
Non-nil when TABLE-ROW is at the beginning of a row group.
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-rowgroup-p (table-row info)
"Non-nil when TABLE-ROW is at the beginning of a row group.
INFO is a plist used as a communication channel."
(unless (or (eq (org-element-property :type table-row) 'rule)
(org-export-table-row-is-special-p table-row info))
(let ((borders (org-export-table-cell-borders
(car (org-element-contents table-row)) info)))
(or (memq 'top borders) (memq 'above borders)))))