lisp/ox.el (org-export-table-row-is-special-p): Fix docstring
Special rows may not be ignored depending on :with-special-rows option.
This commit is contained in:
parent
d72feeb09b
commit
b45b393265
|
@ -5086,8 +5086,7 @@ A table has a header when it contains at least two row groups."
|
||||||
cache)))))
|
cache)))))
|
||||||
|
|
||||||
(defun org-export-table-row-is-special-p (table-row _)
|
(defun org-export-table-row-is-special-p (table-row _)
|
||||||
"Non-nil if TABLE-ROW is considered special.
|
"Non-nil if TABLE-ROW is considered special."
|
||||||
All special rows will be ignored during export."
|
|
||||||
(when (eq (org-element-property :type table-row) 'standard)
|
(when (eq (org-element-property :type table-row) 'standard)
|
||||||
(let ((first-cell (org-element-contents
|
(let ((first-cell (org-element-contents
|
||||||
(car (org-element-contents table-row)))))
|
(car (org-element-contents table-row)))))
|
||||||
|
|
Loading…
Reference in New Issue