From 76a8c2bb17fb02cc5a9f9df050e2ca7ef80c6f6d Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 15 Mar 2011 18:36:10 +0100 Subject: [PATCH] * org-html.el (org-export-as-html): fix export of email. --- lisp/org-html.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/org-html.el b/lisp/org-html.el index c2632e15d..f58d942ab 100644 --- a/lisp/org-html.el +++ b/lisp/org-html.el @@ -1731,8 +1731,7 @@ lang=\"%s\" xml:lang=\"%s\"> (when (and (plist-get opt-plist :author-info) author) (insert "

" (nth 1 lang-words) ": " author "

\n")) (when (and (plist-get opt-plist :email-info) email) - (insert "

<" email ">

\n")) + (insert "

" email "

\n")) (when (plist-get opt-plist :creator-info) (insert "

" (concat "Org version " org-version " with Emacs version " -- 2.11.4.GIT