Function: org-export-table-cell-ends-colgroup-p
org-export-table-cell-ends-colgroup-p is a byte-compiled function
defined in ox.el.gz.
Signature
(org-export-table-cell-ends-colgroup-p TABLE-CELL INFO)
Documentation
Non-nil when TABLE-CELL is at the end of a column 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-cell-ends-colgroup-p (table-cell info)
"Non-nil when TABLE-CELL is at the end of a column group.
INFO is a plist used as a communication channel."
;; A cell ends a column group either when it is at the end of a row
;; or when it has a right border.
(or (eq (car (last (org-element-contents
(org-export-get-parent table-cell))))
table-cell)
(memq 'right (org-export-table-cell-borders table-cell info))))