| 
					
				 | 
			
			
				@@ -114,6 +114,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 (defconst org-e-html-options-alist 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   '((:agenda-style nil nil org-agenda-export-html-style) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    (:creator "CREATOR" nil org-e-html-creator-string) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     (:convert-org-links nil nil org-e-html-link-org-files-as-html) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     ;; (:expand-quoted-html nil "@" org-e-html-expand) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     (:inline-images nil nil org-e-html-inline-images) 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -871,6 +872,14 @@ When nil, the links still point to the plain `.org' file." 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   :group 'org-export-e-html 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   :type 'boolean) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+(defcustom org-e-html-creator-string 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  (format "Generated by <a href=\"http://orgmode.org\">Org</a> mode %s in <a href=\"http://www.gnu.org/software/emacs/\">Emacs</a> %s." 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	  (if (fboundp 'org-version) (org-version) "(Unknown)") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	  emacs-version) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  "String to insert at the end of the HTML document." 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  :group 'org-export-e-html 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  :type '(string :tag "Creator string")) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 ;;;; Headline 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 (defcustom org-e-html-format-headline-function nil 
			 |