From d20aa46a49370dd3eec583b26d6dd79bb4eb9ab2 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Mon, 11 Jul 2011 13:40:36 +0200 Subject: [PATCH] org-html.el: New defcustom: `org-export-html-before-content-div' (org-export-html-before-content-div): New defcustom for arbitrary HTML code placed before the main div container. --- lisp/org-html.el | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lisp/org-html.el b/lisp/org-html.el index 43003e201..0a6c1d86c 100644 --- a/lisp/org-html.el +++ b/lisp/org-html.el @@ -612,6 +612,11 @@ with a link to this URL." (const :tag "Keep internal css" nil) (string :tag "URL or local href"))) +(defcustom org-export-html-before-content-div "" + "Arbitrary HTML code placed before
." + :group 'org-export-htmlize + :type 'string) + (defcustom org-export-html-content-div "content" "The name of the container DIV that holds all the page contents." :group 'org-export-htmlize @@ -1292,6 +1297,7 @@ lang=\"%s\" xml:lang=\"%s\"> %s +%s
%s " @@ -1309,6 +1315,7 @@ lang=\"%s\" xml:lang=\"%s\"> date author description keywords style mathjax + org-export-html-before-content-div org-export-html-content-div (if (or link-up link-home) (concat -- 2.11.4.GIT