Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In org-mode, how do I remove the "Validate XHTML 1.0" message from HTML export?

Tags:

emacs

org-mode

In org-mode 7.8, how do I remove the "Validate XHTML 1.0" message at the bottom of the page?

Its neighbours can be removed with:

#+OPTIONS: author:nil email:nil creator:nil timestamp:nil

but I can't find the equivalent for the "Validate XHTML 1.0" message.

like image 653
johntait.org Avatar asked Feb 28 '13 11:02

johntait.org


2 Answers

One way is to change the value of the org-export-html-validation-link variable to nil:

(setq org-export-html-validation-link nil)

As of org version 8.0, use:

(setq org-html-validation-link nil)
like image 145
Bryan Luby Avatar answered Oct 21 '22 12:10

Bryan Luby


I used the following line in my org file:

#+OPTIONS: html-postamble:nil

but that removes more than just the validation link. Using html-validation-link instead didn't have the expected result.

like image 21
YoungFrog Avatar answered Oct 21 '22 12:10

YoungFrog