Search code examples
emacsorg-mode

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


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.


Solution

  • 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)