ソースを参照

Revert "Fix bug when exporing inactive timestamps."

This reverts commit ca69b556241ae904c5f291c98a6453f4ce830557.
David Maus 14 年 前
コミット
c6f5bf72e9
1 ファイル変更4 行追加4 行削除
  1. 4 4
      lisp/org-html.el

+ 4 - 4
lisp/org-html.el

@@ -2113,14 +2113,14 @@ But it has the disadvantage, that Org-mode's HTML conversions cannot be used."
 	(or b (setq b (substring s 0 (match-beginning 0))))
 	(setq r (concat
 		 r (substring s 0 (match-beginning 0))
-		 " <span class=\"timestamp-wrapper\">"
+		 " @<span class=\"timestamp-wrapper\">"
 		 (if (match-end 1)
-		     (format "<span class=\"timestamp-kwd\">%s </span>"
+		     (format "@<span class=\"timestamp-kwd\">%s @</span>"
 			     (match-string 1 s)))
-		 (format " <span class=\"timestamp\">%s</span>"
+		 (format " @<span class=\"timestamp\">%s@</span>"
 			 (substring
 			  (org-translate-time (match-string 3 s)) 1 -1))
-		 "</span>")
+		 "@</span>")
 	      s (substring s (match-end 0))))
       ;; Line break if line started and ended with time stamp stuff
       (if (not r)