ox-html: Restore wrongly omitted table attributes under HTML5

* lisp/ox-html.el (org-html-table): For HTML5,
  omit :html-table-attributes but not :id or :attr_html.

TINYCHANGE
This commit is contained in:
Kodi Arfer 2013-06-29 10:43:07 -04:00 committed by Nicolas Goaziou
parent 41068a59d2
commit abacffb3e0
1 changed files with 6 additions and 6 deletions

View File

@ -3163,12 +3163,12 @@ contextual information."
(number (org-export-get-ordinal
table info nil 'org-html--has-caption-p))
(attributes
(if (org-html-html5-p info) ""
(org-html--make-attribute-string
(org-combine-plists
(and label (list :id (org-export-solidify-link-text label)))
(plist-get info :html-table-attributes)
(org-export-read-attribute :attr_html table)))))
(and (not (org-html-html5-p info))
(plist-get info :html-table-attributes))
(org-export-read-attribute :attr_html table))))
(alignspec
(if (and (boundp 'org-html-format-table-no-css)
org-html-format-table-no-css)