diff options
author | Carsten Dominik <dominik@science.uva.nl> | 2008-07-26 03:40:06 +0000 |
---|---|---|
committer | Carsten Dominik <dominik@science.uva.nl> | 2008-07-26 03:40:06 +0000 |
commit | f64ebdc2f5621f8cca3c49735c396b5daafa3a87 (patch) | |
tree | 398017d501b8849e0f2d6d5e7ad7a3397ea024e4 /lisp/org/org-exp.el | |
parent | ad9c4a7860b20f0c1f46cb71b1631416571f16b4 (diff) | |
download | emacs-f64ebdc2f5621f8cca3c49735c396b5daafa3a87.tar.gz |
* org-exp.el (org-export-html-style)
(org-export-html-style-extra): Declare as safe-local-variable.
Diffstat (limited to 'lisp/org/org-exp.el')
-rw-r--r-- | lisp/org/org-exp.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/org/org-exp.el b/lisp/org/org-exp.el index f24f4a14990..a1baadc884c 100644 --- a/lisp/org/org-exp.el +++ b/lisp/org/org-exp.el @@ -526,6 +526,8 @@ you can \"misuse\" it to add arbitrary text to the header. 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 of style information, and do not forget to surround the style 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." |