소스 검색

org-icalendar.el: exclude tags from the summary of the ical entry.

This was reported by Guy Wiener <wiener.guy@gmail.com>.

http://article.gmane.org/gmane.emacs.orgmode/29819
Bastien Guerry 15 년 전
부모
커밋
373224ecdb
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      lisp/org-icalendar.el

+ 3 - 1
lisp/org-icalendar.el

@@ -311,7 +311,9 @@ When COMBINE is non nil, add the category to each line."
 		inc t
 		hd (condition-case nil
 		       (org-icalendar-cleanup-string
-			(org-get-heading))
+			(replace-regexp-in-string 
+			 ":[[:alnum:]_@#%:]+:[ \t]*$" ""
+			 (org-get-heading)))
 		     (error (throw :skip nil)))
 		summary (org-icalendar-cleanup-string
 			 (org-entry-get nil "SUMMARY"))