瀏覽代碼

org-html.el: Fix bug about remaining "@" when exporting timestamps.

Puneeth Chaganti 14 年之前
父節點
當前提交
b6efc82dd0
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lisp/org-html.el

+ 1 - 1
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))))
 
 (defvar htmlize-buffer-places)  ; from htmlize.el