Browse Source

ox-html.el: Enhance docstrings

* ox-html.el (org-html-table-header-tags)
(org-html-table-data-tags): Enhance docstrings.
Bastien Guerry 11 years ago
parent
commit
4223367f89
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lisp/ox-html.el

+ 2 - 2
lisp/ox-html.el

@@ -794,7 +794,7 @@ When exporting to HTML5, these values will be disregarded."
 		:value-type (string :tag "Value")))
 		:value-type (string :tag "Value")))
 
 
 (defcustom org-html-table-header-tags '("<th scope=\"%s\"%s>" . "</th>")
 (defcustom org-html-table-header-tags '("<th scope=\"%s\"%s>" . "</th>")
-  "The opening tag for table header fields.
+  "The opening and ending tags for table header fields.
 This is customizable so that alignment options can be specified.
 This is customizable so that alignment options can be specified.
 The first %s will be filled with the scope of the field, either row or col.
 The first %s will be filled with the scope of the field, either row or col.
 The second %s will be replaced by a style entry to align the field.
 The second %s will be replaced by a style entry to align the field.
@@ -804,7 +804,7 @@ See also the variable `org-html-table-align-individual-fields'."
   :type '(cons (string :tag "Opening tag") (string :tag "Closing tag")))
   :type '(cons (string :tag "Opening tag") (string :tag "Closing tag")))
 
 
 (defcustom org-html-table-data-tags '("<td%s>" . "</td>")
 (defcustom org-html-table-data-tags '("<td%s>" . "</td>")
-  "The opening tag for table data fields.
+  "The opening and ending tags for table data fields.
 This is customizable so that alignment options can be specified.
 This is customizable so that alignment options can be specified.
 The first %s will be filled with the scope of the field, either row or col.
 The first %s will be filled with the scope of the field, either row or col.
 The second %s will be replaced by a style entry to align the field.
 The second %s will be replaced by a style entry to align the field.