emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] [PATCH] [BUG] Timestamps surrounded by @@ in HTML export


From: Puneeth Chaganti
Subject: Re: [Orgmode] [PATCH] [BUG] Timestamps surrounded by @@ in HTML export
Date: Wed, 2 Feb 2011 00:20:30 +0530

On Tue, Feb 1, 2011 at 10:18 PM, Bastien <address@hidden> wrote:
> Jason Dunsmore <address@hidden> writes:
>
>> I noticed in the latest Git version that each inactive timestamp has
>> "@@" before and after it in HTML exported output.  Here 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 "@<br/>")))
+         (setq r (concat r "<br/>")))
        r))))


Thanks,
Puneeth



reply via email to

[Prev in Thread] Current Thread [Next in Thread]