File tree 1 file changed +11
-0
lines changed
1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ The following sections explain the properties of the domain object:
37
37
- [ Touched at] ( #touched-at )
38
38
- [ Summary] ( #summary )
39
39
- [ Description] ( #description )
40
+ - [ HTML Description] ( #html-description )
40
41
- [ Occurrence] ( #occurrence )
41
42
- [ Location] ( #location )
42
43
- [ Organizer] ( #organizer )
@@ -113,6 +114,16 @@ $event = new Event();
113
114
$event->setDescription('Lorem Ipsum Dolor...');
114
115
```
115
116
117
+ ### HTML Description
118
+ In addition to the description, it is possible to add an alternative HTML description for clients that support it (ie. Outlook).
119
+
120
+ ``` php
121
+ use Eluceo\iCal\Domain\Entity\Event;
122
+
123
+ $event = new Event();
124
+ $event->setHtmlDescription('<p >Lorem Ipsum Dolor...</p >');
125
+ ```
126
+
116
127
### URL
117
128
118
129
The URL can be used to link to an arbitrary resource.
You can’t perform that action at this time.
0 commit comments