|
@@ -746,6 +746,11 @@ This is customizable so that alignment options can be specified."
|
|
:group 'org-export-tables
|
|
:group 'org-export-tables
|
|
:type '(cons (string :tag "Opening tag") (string :tag "Closing tag")))
|
|
:type '(cons (string :tag "Opening tag") (string :tag "Closing tag")))
|
|
|
|
|
|
|
|
+(defcustom org-export-html-validation-link nil
|
|
|
|
+ "Non-nil means, add validationlink to postamble of HTML exported files."
|
|
|
|
+ :group 'org-export-html
|
|
|
|
+ :type 'boolean)
|
|
|
|
+
|
|
(defcustom org-export-html-with-timestamp nil
|
|
(defcustom org-export-html-with-timestamp nil
|
|
"If non-nil, write `org-export-html-html-helper-timestamp'
|
|
"If non-nil, write `org-export-html-html-helper-timestamp'
|
|
into the exported HTML text. Otherwise, the buffer will just be saved
|
|
into the exported HTML text. Otherwise, the buffer will just be saved
|
|
@@ -4072,6 +4077,8 @@ lang=\"%s\" xml:lang=\"%s\">
|
|
(when org-export-creator-info
|
|
(when org-export-creator-info
|
|
(insert (format "<p class=\"creator\">HTML generated by org-mode %s in emacs %s</p>\n"
|
|
(insert (format "<p class=\"creator\">HTML generated by org-mode %s in emacs %s</p>\n"
|
|
org-version emacs-major-version)))
|
|
org-version emacs-major-version)))
|
|
|
|
+ (when org-export-html-validation-link
|
|
|
|
+ (insert "<p class=\"xhtml-validation\"><a href=\"http://validator.w3.org/check?uri=referer\" target=\"_blank\">Validate XHTML 1.0</a></p>"))
|
|
(insert "</div>"))
|
|
(insert "</div>"))
|
|
|
|
|
|
(if org-export-html-with-timestamp
|
|
(if org-export-html-with-timestamp
|