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.
This commit is contained in:
Bastien Guerry 2013-04-09 13:44:00 +02:00
parent 728c69df18
commit e664fc89d5

View file

@ -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