Variable: org-html-table-header-tags
org-html-table-header-tags is a customizable variable defined in
ox-html.el.gz.
Value
("<th scope=\"%s\"%s>" . "</th>")
Documentation
The opening and ending tags for table header fields.
This is customizable so that alignment options can be specified.
The first %s will be filled with the scope of the field, either row or col.
The second %s will be replaced by a style entry to align the field.
See also the variable org-html-table-use-header-tags-for-first-column.
See also the variable org-html-table-align-individual-fields.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
(defcustom org-html-table-header-tags '("<th scope=\"%s\"%s>" . "</th>")
"The opening and ending tags for table header fields.
This is customizable so that alignment options can be specified.
The first %s will be filled with the scope of the field, either row or col.
The second %s will be replaced by a style entry to align the field.
See also the variable `org-html-table-use-header-tags-for-first-column'.
See also the variable `org-html-table-align-individual-fields'."
:group 'org-export-html
:type '(cons (string :tag "Opening tag") (string :tag "Closing tag")))