Function: org-odt-table-style-spec
org-odt-table-style-spec is a byte-compiled function defined in
ox-odt.el.gz.
Signature
(org-odt-table-style-spec ELEMENT INFO)
Documentation
Get table style from :odt-table-styles INFO property.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
;;;; Table Cell
(defun org-odt-table-style-spec (element info)
"Get table style from `:odt-table-styles' INFO property."
(let* ((table (org-element-lineage element 'table))
(table-attributes (org-export-read-attribute :attr_odt table))
(table-style (plist-get table-attributes :style)))
(assoc table-style (plist-get info :odt-table-styles))))