From 1c059f2f571894a333a534fd34021af194bc50c9 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Tue, 3 Mar 2009 14:06:39 +0100 Subject: [PATCH] Export: Make validation link fully configurable --- lisp/org-exp.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lisp/org-exp.el b/lisp/org-exp.el index ce6670cd5..f802ce79e 100644 --- a/lisp/org-exp.el +++ b/lisp/org-exp.el @@ -749,7 +749,11 @@ This is customizable so that alignment options can be specified." (defcustom org-export-html-validation-link nil "Non-nil means, add validationlink to postamble of HTML exported files." :group 'org-export-html - :type 'boolean) + :type '(choice + (const :tag "Nothing" nil) + (const :tag "XHTML 1.0" "

Validate XHTML 1.0

") + (string :tag "Specify full HTML"))) + (defcustom org-export-html-with-timestamp nil "If non-nil, write `org-export-html-html-helper-timestamp' @@ -4080,7 +4084,7 @@ lang=\"%s\" xml:lang=\"%s\"> (insert (format "

HTML generated by org-mode %s in emacs %s

\n" org-version emacs-major-version))) (when org-export-html-validation-link - (insert "

Validate XHTML 1.0

")) + (insert org-export-html-validation-link "\n")) (insert "")) (if org-export-html-with-timestamp -- 2.11.4.GIT