summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2014-03-19 11:27:18 +0100
committerBastien Guerry <bzg@altern.org>2014-03-19 11:27:18 +0100
commit4223367f89104a56517c777e8ce85670d610b280 (patch)
tree766f86bebfc331303dae31c5e1732cafabd7340f
parent719b6ec77de7c8e71d9ebc86db1d02285770232d (diff)
downloadorg-mode-4223367f89104a56517c777e8ce85670d610b280.tar.gz
ox-html.el: Enhance docstrings
* ox-html.el (org-html-table-header-tags) (org-html-table-data-tags): Enhance docstrings.
-rw-r--r--lisp/ox-html.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ox-html.el b/lisp/ox-html.el
index cb95161..ce2b26c 100644
--- a/lisp/ox-html.el
+++ b/lisp/ox-html.el
@@ -794,7 +794,7 @@ When exporting to HTML5, these values will be disregarded."
:value-type (string :tag "Value")))
(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.
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.
@@ -804,7 +804,7 @@ See also the variable `org-html-table-align-individual-fields'."
:type '(cons (string :tag "Opening tag") (string :tag "Closing tag")))
(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.
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.