From 4898be673fbd84406a0ad1a67fb103ea2b6be2c9 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Mon, 30 Dec 2013 10:43:43 +0100 Subject: [PATCH] Revert "ox-html.el: Use classes for caption instead of align" This reverts commit 1813200fc81fa5e0f248407d852f3771fe2d4f6e. --- lisp/ox-html.el | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lisp/ox-html.el b/lisp/ox-html.el index 845fd3caa..44962a533 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -279,8 +279,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; } @@ -3257,8 +3255,8 @@ contextual information." (if (equal attributes "") "" (concat " " attributes)) (if (not caption) "" (format (if org-html-table-caption-above - "%s" - "%s") + "%s" + "%s") (concat "" (format (org-html--translate "Table %d:" info) number) -- 2.11.4.GIT