From mboxrd@z Thu Jan 1 00:00:00 1970 From: Puneeth Chaganti Subject: Re: [PATCH] [BUG] Timestamps surrounded by @@ in HTML export Date: Wed, 2 Feb 2011 00:20:30 +0530 Message-ID: References: <8762t3oje2.fsf@riotblast.dunsmor.com> <87hbcnlmys.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from [140.186.70.92] (port=48558 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PkLJy-0006K2-GA for emacs-orgmode@gnu.org; Tue, 01 Feb 2011 13:51:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PkLJX-00058v-6k for emacs-orgmode@gnu.org; Tue, 01 Feb 2011 13:50:56 -0500 Received: from mail-wy0-f169.google.com ([74.125.82.169]:49399) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PkLJW-00058c-Uh for emacs-orgmode@gnu.org; Tue, 01 Feb 2011 13:50:55 -0500 Received: by wyj26 with SMTP id 26so7482532wyj.0 for ; Tue, 01 Feb 2011 10:50:53 -0800 (PST) In-Reply-To: <87hbcnlmys.fsf@gnu.org> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Bastien Cc: Jason Dunsmore , Org-mode mailing list On Tue, Feb 1, 2011 at 10:18 PM, Bastien wrot= e: > Jason Dunsmore writes: > >> I noticed in the latest Git version that each inactive timestamp has >> "@@" before and after it in HTML exported output. =C2=A0Here is a patch = that >> fixes it. > > Applied, thanks! I don't really understand what is going on here, but there was one @ still appearing after this patch was applied. I am sending a patch to remove the one remaining @ symbol in the `org-html-handle-time-stamps` function. I don't know if this breaks something else and why this was left out by Jason. diff --git a/lisp/org-html.el b/lisp/org-html.el index 2f0377b..58c65bf 100644 --- a/lisp/org-html.el +++ b/lisp/org-html.el @@ -2138,7 +2138,7 @@ But it has the disadvantage, that Org-mode's HTML conversions cannot be used." s (setq r (concat r s)) (unless (string-match "\\S-" (concat b s)) - (setq r (concat r "@
"))) + (setq r (concat r "
"))) r)))) Thanks, Puneeth