summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-04-09 13:44:00 +0200
committerBastien Guerry <bzg@altern.org>2013-04-09 13:44:00 +0200
commite664fc89d57f6231a4acc72d15b9f61fdbdffc4a (patch)
treee394a4b84a295c4c70dbd791ec4e63447bccad5c
parent728c69df189106ef8480c59c7548bc392edcb6c6 (diff)
downloadorg-mode-e664fc89d57f6231a4acc72d15b9f61fdbdffc4a.tar.gz
ox-html.el (org-html-table-row-tags): Fix example in docstring
* ox-html.el (org-html-table-row-tags): Fix example in docstring. Thanks to Stefan Vollmar for providing the correct example.
-rw-r--r--lisp/ox-html.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ox-html.el b/lisp/ox-html.el
index 39b0ec9..46543bc 100644
--- a/lisp/ox-html.el
+++ b/lisp/ox-html.el
@@ -796,7 +796,9 @@ For example:
(setq org-html-table-row-tags
(cons '(cond (top-row-p \"<tr class=\\\"tr-top\\\">\")
- (bottom-row-p \"<tr class=\\\"tr-bottom\\\">\"))))
+ (bottom-row-p \"<tr class=\\\"tr-bottom\\\">\")
+ (t \"<tr>\"))
+ \"</tr>\"))
will use the \"tr-top\" and \"tr-bottom\" classes for top and bottom row."
:group 'org-export-html