From 9714678f30c174cbdc2d32c1223123704b8ab196 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Tue, 17 Nov 2009 15:11:28 +0100 Subject: [PATCH] HTML export: Move home/up link div into the content div Patch by Sebastian Rose --- lisp/ChangeLog | 3 +++ lisp/org-html.el | 12 ++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f7935c000..ca0ff1838 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2009-11-17 Carsten Dominik + * org-html.el (org-export-as-html): Move the home/up link into + the content div. + * org.el (org-export-latex-packages-alist): Option definition moved here from org-latex.el. diff --git a/lisp/org-html.el b/lisp/org-html.el index 584922f3c..ee8f102dc 100644 --- a/lisp/org-html.el +++ b/lisp/org-html.el @@ -753,7 +753,6 @@ PUB-DIR is set, use this as the publishing directory." -%s %s @@ -765,6 +764,7 @@ lang=\"%s\" xml:lang=\"%s\">
+%s " (format (or (and (stringp org-export-html-xml-declaration) @@ -775,17 +775,17 @@ lang=\"%s\" xml:lang=\"%s\"> "") (or charset "iso-8859-1")) language language + (org-html-expand title) + (or charset "iso-8859-1") + date author description keywords + style (if (or link-up link-home) (concat (format org-export-html-home/up-format (or link-up link-home) (or link-home link-up)) "\n") - "") - (org-html-expand title) - (or charset "iso-8859-1") - date author description keywords - style)) + ""))) (org-export-html-insert-plist-item opt-plist :preamble opt-plist) -- 2.11.4.GIT