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:
Ihor Radchenko 2024-04-03 14:58:22 +03:00
parent d72feeb09b
commit b45b393265
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B
1 changed files with 1 additions and 2 deletions

View File

@ -5086,8 +5086,7 @@ A table has a header when it contains at least two row groups."
cache)))))
(defun org-export-table-row-is-special-p (table-row _)
"Non-nil if TABLE-ROW is considered special.
All special rows will be ignored during export."
"Non-nil if TABLE-ROW is considered special."
(when (eq (org-element-property :type table-row) 'standard)
(let ((first-cell (org-element-contents
(car (org-element-contents table-row)))))