mangstadt on master
Update jackson dependency to la… (compare)
mangstadt on master
Create unit test for Issue 117 … (compare)
BEGIN:VALARM
ACTION:DISPLAY
DESCRIPTION:REMINDER
TRIGGER;RELATED=START:+PT00H00M00S
END:VALARM
Hi @mangstadt . I want to use your library to create an event with a description that contains a link. How can I set the content to be formatted? I'm trying to follow indications in the following issue, but when I open the generated .ics file in Outlook it doesn't show any content/description: mangstadt/biweekly#71
Here is what I have:
...
VEvent event = new VEvent();
final String htmlDescription = "<a href=\"www.google.es\">Dummy link</a>";
RawProperty property = event.setExperimentalProperty("X-ALT-DESC", htmlDescription);
property.setParameter("FMTTYPE", "text/html");