iCal
iCal copied to clipboard
Single quote gets encoded as '\; and shown in Google Calendar

Workaround:
...
$output = $vCalendar->render();
$output = str_replace( [ ''\;', ''' ], "'", $output );