Explorar o código

ox-html.el (org-html-table): Append #+attr_html attributes

* ox-html.el (org-html-table): Append #+attr_html attributes.

Thanks to Дядов Васил Стоянов for reporting this and for a preliminary
patch.
Bastien Guerry %!s(int64=12) %!d(string=hai) anos
pai
achega
131d70ab48
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      lisp/ox-html.el

+ 3 - 1
lisp/ox-html.el

@@ -2693,7 +2693,9 @@ contextual information."
 		(and (string-match  "<table\\(.*\\)>" table-tag)
 		     (match-string 1 table-tag))
 		(and label (format " id=\"%s\""
-				   (org-export-solidify-link-text label)))))))
+				   (org-export-solidify-link-text label)))
+		(unless (string= attributes "")
+		  (concat " " attributes))))))
        ;; Remove last blank line.
        (setq contents (substring contents 0 -1))
        (format "<table%s>\n%s\n%s\n%s\n</table>"