Skip to content

Instantly share code, notes, and snippets.

@tommorris
Last active November 2, 2019 12:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tommorris/0aca78d680804c04bf1e35318893a34a to your computer and use it in GitHub Desktop.
Save tommorris/0aca78d680804c04bf1e35318893a34a to your computer and use it in GitHub Desktop.
iCalendar test documentation

iCalendar TZ testing

The following iCalendar snippet works in Fantastical and Calendar.app

BEGIN:VCALENDAR
BEGIN:VEVENT
SUMMARY:Test Event
DTSTART;TZID=America/Los_Angeles:20160630T120000
DTEND;TZID=America/Los_Angeles:20160630T180000
END:VEVENT
END:VCALENDAR

Quotes around the TZID breaks it in both iCalendar and Fantastical.

BEGIN:VCALENDAR
BEGIN:VEVENT
SUMMARY:Test Event
DTSTART;TZID="America/Los_Angeles":20160630T120000
DTEND;TZID="America/Los_Angeles":20160630T180000
END:VEVENT
END:VCALENDAR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment