I have this simple ics feed:
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Remodel or Move//NONSGML v1.0//EN
X-WR-CALNAME:My Scheduler
BEGIN:VEVENT
UID:uid1@remodelormove.com
DTSTAMP:20121010T080000Z
DTSTART:20121010T080000Z
DTEND:20121010T090000Z
SUMMARY:Compile list of wants
END:VEVENT
END:VCALENDAR
I would like to insert an HTML anchor into the summary so that users can click it and be sent off from Google Calendar (or Outlook, ...) to a webpage sitting on my website where they can edit the entry.
I am after something like this:
SUMMARY:Compile list of wants <a href="http://www.mywebsite.com/edit?id=923">edit</a>
I try that but the link is not shown when I import the ics feed into Google Calendar.
How can I achieve what I am after?
Thanks.