aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Dominik2008-07-26 03:40:06 +0000
committerCarsten Dominik2008-07-26 03:40:06 +0000
commitf64ebdc2f5621f8cca3c49735c396b5daafa3a87 (patch)
tree398017d501b8849e0f2d6d5e7ad7a3397ea024e4
parentad9c4a7860b20f0c1f46cb71b1631416571f16b4 (diff)
downloademacs-f64ebdc2f5621f8cca3c49735c396b5daafa3a87.tar.gz
emacs-f64ebdc2f5621f8cca3c49735c396b5daafa3a87.zip
* org-exp.el (org-export-html-style)
(org-export-html-style-extra): Declare as safe-local-variable.
-rw-r--r--lisp/org/org-exp.el4
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.
526See also the variable `org-export-html-style-extra'." 526See also the variable `org-export-html-style-extra'."
527 :group 'org-export-html 527 :group 'org-export-html
528 :type 'string) 528 :type 'string)
529;;;###autoload
530(put 'org-export-html-style 'safe-local-variable 'stringp)
529 531
530(defcustom org-export-html-style-extra "" 532(defcustom org-export-html-style-extra ""
531 "Additional style information for HTML export. 533 "Additional style information for HTML export.
@@ -535,6 +537,8 @@ settings of style information, and do not forget to surround the style
535settings with <style>...</style> tags." 537settings with <style>...</style> tags."
536 :group 'org-export-html 538 :group 'org-export-html
537 :type 'string) 539 :type 'string)
540;;;###autoload
541(put 'org-export-html-style-extra 'safe-local-variable 'stringp)
538 542
539(defcustom org-export-html-title-format "<h1 class=\"title\">%s</h1>\n" 543(defcustom org-export-html-title-format "<h1 class=\"title\">%s</h1>\n"
540 "Format for typesetting the document title in HTML export." 544 "Format for typesetting the document title in HTML export."