mangstadt on master
Update jackson dependency to la… (compare)
mangstadt on master
Create unit test for Issue 117 … (compare)
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");
Hi @mangstadt , first of all thanks a lot for this awesome library !! I don't how could I have solved the problem without it !!
Well , I am stuck at one point , I was using library for creating Events programmatically & then generating dates from them & it worked fine for all the cases but there was one ...
I tried to generate Monthly events , which occur on some week days at gap of some months ,
Rule Desc :
Repeat event every month on the nth z Day at a gap of X Months (
n : 1,2,3,4,Last
z :MONDAY,TUESDAY,THRUSDAY ,FRIDAY, etc
x -> Interval
)
but when I got dateIterator it doesn't contain all the days I specified in the Rule . Can you help me ?
I have attached the Code in the Image ,
Result is : [2020-06-05T00:00, 2020-08-07T00:00, 2020-10-05T00:00]