summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-12-30 10:44:31 +0100
committerBastien Guerry <bzg@altern.org>2013-12-30 10:44:31 +0100
commit855ba428f2148380b0d1934f382524e3669ff91e (patch)
tree9230a37c3a11f93e997e02ac9e6e6a44f0e7212e
parent52d34f6cbc372f0f6ae228b691ebd19aad19ec5d (diff)
parent4898be673fbd84406a0ad1a67fb103ea2b6be2c9 (diff)
downloadorg-mode-855ba428f2148380b0d1934f382524e3669ff91e.tar.gz
Merge branch 'maint'
-rw-r--r--lisp/ox-html.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/ox-html.el b/lisp/ox-html.el
index 38988ed..9fa0a8c 100644
--- a/lisp/ox-html.el
+++ b/lisp/ox-html.el
@@ -280,8 +280,6 @@ for the JavaScript code in this tag.
pre.src-sql:before { content: 'SQL'; }
table { border-collapse:collapse; }
- caption.t-above { caption-side: top; }
- caption.t-bottom { caption-side: bottom; }
td, th { vertical-align:top; }
th.right { text-align: center; }
th.left { text-align: center; }
@@ -3270,8 +3268,8 @@ contextual information."
(if (equal attributes "") "" (concat " " attributes))
(if (not caption) ""
(format (if org-html-table-caption-above
- "<caption class=\"t-above\">%s</caption>"
- "<caption class=\"t-bottom\">%s</caption>")
+ "<caption align=\"above\">%s</caption>"
+ "<caption align=\"bottom\">%s</caption>")
(concat
"<span class=\"table-number\">"
(format (org-html--translate "Table %d:" info) number)