Function: org-export-table-row-ends-rowgroup-p

org-export-table-row-ends-rowgroup-p is a byte-compiled function defined in ox.el.gz.

Signature

(org-export-table-row-ends-rowgroup-p TABLE-ROW INFO)

Documentation

Non-nil when TABLE-ROW is at the end 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-ends-rowgroup-p (table-row info)
  "Non-nil when TABLE-ROW is at the end 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 'bottom borders) (memq 'below borders)))))