Variable: org-html-table-default-attributes
org-html-table-default-attributes is a customizable variable defined
in ox-html.el.gz.
Value
(:border "2" :cellspacing "0" :cellpadding "6" :rules "groups" :frame
"hsides")
Documentation
Default attributes and values which will be used in table tags.
This is a plist where attributes are symbols, starting with colons, and values are strings.
When exporting to HTML5, these values will be disregarded.
This variable was added, or its default value changed, in Org version
8.0.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
;;;; Table
(defcustom org-html-table-default-attributes
'(:border "2" :cellspacing "0" :cellpadding "6" :rules "groups" :frame "hsides")
"Default attributes and values which will be used in table tags.
This is a plist where attributes are symbols, starting with
colons, and values are strings.
When exporting to HTML5, these values will be disregarded."
:group 'org-export-html
:version "24.4"
:package-version '(Org . "8.0")
:type '(plist :key-type (symbol :tag "Property")
:value-type (string :tag "Value")))