Function: org-export-table-cell-starts-colgroup-p
org-export-table-cell-starts-colgroup-p is a byte-compiled function
defined in ox.el.gz.
Signature
(org-export-table-cell-starts-colgroup-p TABLE-CELL INFO)
Documentation
Non-nil when TABLE-CELL is at the beginning 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-starts-colgroup-p (table-cell info)
"Non-nil when TABLE-CELL is at the beginning of a column group.
INFO is a plist used as a communication channel."
;; A cell starts a column group either when it is at the beginning
;; of a row (or after the special column, if any) or when it has
;; a left border.
(or (eq (org-element-map (org-export-get-parent table-cell) 'table-cell
'identity info 'first-match)
table-cell)
(memq 'left (org-export-table-cell-borders table-cell info))))