Просмотр исходного кода

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.
Bastien Guerry 12 лет назад
Родитель
Сommit
e664fc89d5
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      lisp/ox-html.el

+ 3 - 1
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