From a68eb4b1e64cbe6e495fdd2c1eaf8ae597bf8602 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Tue, 3 Mar 2009 10:23:22 +0100 Subject: [PATCH] HTML export: Add
around everything in --- ORGWEBPAGE/Changes.org | 5 +++++ lisp/ChangeLog | 3 +++ lisp/org-exp.el | 6 ++++-- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ORGWEBPAGE/Changes.org b/ORGWEBPAGE/Changes.org index ee1a73b2e..d4cd7d601 100644 --- a/ORGWEBPAGE/Changes.org +++ b/ORGWEBPAGE/Changes.org @@ -188,6 +188,11 @@ The manual chapters about tags and about properties now only refer to the section about agenda views, where the general syntax of tag/property matches is described. +*** New div around the entire page in HTMP export + +A new =
= is wrapped around the entire page, +everything that is inside ==. + * Version 6.23 ** Overview diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a5dea7f24..498a850b7 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2009-03-03 Carsten Dominik + * org-exp.el (org-export-as-html): Add a "content" div around the + entire content of the body tag. + * org.el (org-match-sparse-tree): Renamed from `org-tags-sparse-tree'. (org-tags-sparse-tree): New alias. diff --git a/lisp/org-exp.el b/lisp/org-exp.el index 95b9ad879..80e96dfeb 100644 --- a/lisp/org-exp.el +++ b/lisp/org-exp.el @@ -3490,7 +3490,9 @@ lang=\"%s\" xml:lang=\"%s\"> %s - + + +
" language language (org-html-expand title) (or charset "iso-8859-1") date author style)) @@ -4072,7 +4074,7 @@ lang=\"%s\" xml:lang=\"%s\"> (if org-export-html-with-timestamp (insert org-export-html-html-helper-timestamp)) (insert (or (plist-get opt-plist :postamble) "")) - (insert "\n\n")) + (insert "\n
\n\n\n")) (unless (plist-get opt-plist :buffer-will-be-killed) (normal-mode)