Mercurial > emacs
changeset 97031:66b4997106ce
* org-exp.el (org-export-html-style)
(org-export-html-style-extra): Declare as safe-local-variable.
author | Carsten Dominik <dominik@science.uva.nl> |
---|---|
date | Sat, 26 Jul 2008 03:40:06 +0000 |
parents | d24b8ad1e58b |
children | 7f9c12782805 |
files | lisp/org/org-exp.el |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/org/org-exp.el Sat Jul 26 03:39:47 2008 +0000 +++ b/lisp/org/org-exp.el Sat Jul 26 03:40:06 2008 +0000 @@ -526,6 +526,8 @@ See also the variable `org-export-html-style-extra'." :group 'org-export-html :type 'string) +;;;###autoload +(put 'org-export-html-style 'safe-local-variable 'stringp) (defcustom org-export-html-style-extra "" "Additional style information for HTML export. @@ -535,6 +537,8 @@ settings with <style>...</style> tags." :group 'org-export-html :type 'string) +;;;###autoload +(put 'org-export-html-style-extra 'safe-local-variable 'stringp) (defcustom org-export-html-title-format "<h1 class=\"title\">%s</h1>\n" "Format for typesetting the document title in HTML export."