Hello,
I am on Emacs 29.4 and Orgmode 9.6.15 and reading the manual at
https://orgmode.org/manual/iCalendar-Export.html
(cc: Nicolas Goaziou as maintainer of the iCal export, if I understand
correctly)
The example orgmode snippet provided:
--8<---------------cut here---------------start------------->8---
* Meeting at location with multi-line address
<2024-01-08 Mon 14:20-15:00>
:PROPERTIES:
:LOCATION: Someplace
:LOCATION+: Some Street 5
:LOCATION+: 12345 Small Town
:END:
--8<---------------cut here---------------end--------------->8---
is exported as
--8<---------------cut here---------------start------------->8---
BEGIN:VCALENDAR
VERSION:2.0
X-WR-CALNAME:test
PRODID:-//jman//Emacs with Org mode//EN
X-WR-TIMEZONE:CEST
X-WR-CALDESC:
CALSCALE:GREGORIAN
BEGIN:VEVENT
DTSTAMP:20250521T083818Z
UID:TS1-5e9349d6-1a74-4b77-abfe-fe6e558c3dd5
DTSTART:20240108T142000
DTEND:20240108T150000
SUMMARY:Meeting at location with multi-line address
DESCRIPTION:<2024-01-08 Mon 14:20>–<2024-01-08 Mon 15:00>\n:LOCATION: Somep
lace :LOCATION+: Some Street 5 :LOCATION+: 12345 Small\nTown
CATEGORIES:test
END:VEVENT
END:VCALENDAR
--8<---------------cut here---------------end--------------->8---
A few questions:
- Why isn't the LOCATION parsed?
- Why isn't the multiline DESCRIPTION fully parsed?
- Why does the date of the event ends up also in the DESCRIPTION?
- Where does the "CATEGORIES:test" come from?
Thanks