Hi Richard, Richard Lawrence <richard.lawre...@berkeley.edu> writes:
> I've been trying to get iCalendar export working with my agenda files > again since upgrading to 8.0, and I've found that footnotes break the > agenda export to .ics. The problem is that a plain text version of the > footnotes in the file ends up in the output "floating loose"---not > wrapped by VEVENT tags or any other tags---resulting in an unparseable > .ics file (at least according to Google Calendar). I tried this patch but for some reason it does not work. I did not look further, surely Nicolas has something that works. I agree footnotes should be turned off by default for the .ics export.
diff --git a/lisp/ox-icalendar.el b/lisp/ox-icalendar.el index 49299b0..ceb2df0 100644 --- a/lisp/ox-icalendar.el +++ b/lisp/ox-icalendar.el @@ -266,6 +266,7 @@ re-read the iCalendar file.") '((:exclude-tags "ICALENDAR_EXCLUDE_TAGS" nil org-icalendar-exclude-tags split) (:with-timestamps nil "<" org-icalendar-with-timestamps) + (:with-footnotes nil "f" nil) (:with-vtodo nil nil org-icalendar-include-todo) ;; The following property will be non-nil when export has been ;; started from org-agenda-mode. In this case, any entry without
-- Bastien