From 9fd7c3814c8594db33de3510ea95514fa493736a Mon Sep 17 00:00:00 2001 From: nishil Date: Thu, 19 Nov 2015 03:52:20 +0000 Subject: [PATCH] allow HTML in body --- icsFormatter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icsFormatter.js b/icsFormatter.js index 62a87b2..34c0477 100644 --- a/icsFormatter.js +++ b/icsFormatter.js @@ -83,7 +83,7 @@ var icsFormatter = function() { var calendarEvent = [ 'BEGIN:VEVENT', 'CLASS:PUBLIC', - 'DESCRIPTION:' + description, + 'X-ALT-DESC;FMTTYPE=text/html:' + description, 'DTSTART;VALUE=DATE:' + start, 'DTEND;VALUE=DATE:' + end, 'LOCATION:' + location,