diff options
| author | fiatjaf <fiatjaf@gmail.com> | 2025-11-29 15:38:48 -0300 |
|---|---|---|
| committer | fiatjaf <fiatjaf@gmail.com> | 2025-11-29 15:38:48 -0300 |
| commit | bbb9b8be0ff21c7be84edcac22c7162edc80400b (patch) | |
| tree | 0f6e98185c0ad25db46928a6b7bd2f3a2003e58c | |
| parent | 2a33cceff6cbea14006791a4b2342391fd1db0be (diff) | |
remove tzid from calendar event.tzidwhat
| -rw-r--r-- | 52.md | 7 |
1 files changed, 2 insertions, 5 deletions
| @@ -65,6 +65,8 @@ Example: | |||
| 65 | ["d", "<random-identifier>"], | 65 | ["d", "<random-identifier>"], |
| 66 | 66 | ||
| 67 | ["title", "<title of calendar event>"], | 67 | ["title", "<title of calendar event>"], |
| 68 | ["summary", "<brief description of the calendar event>"], | ||
| 69 | ["image", "<string with image URI>"], | ||
| 68 | 70 | ||
| 69 | // dates | 71 | // dates |
| 70 | ["start", "<YYYY-MM-DD>"], | 72 | ["start", "<YYYY-MM-DD>"], |
| @@ -93,8 +95,6 @@ Aside from the common tags, this also takes the following tags: | |||
| 93 | 95 | ||
| 94 | * `start` (required) inclusive start Unix timestamp in seconds. Must be less than `end`, if it exists. | 96 | * `start` (required) inclusive start Unix timestamp in seconds. Must be less than `end`, if it exists. |
| 95 | * `end` (optional) exclusive end Unix timestamp in seconds. If omitted, the calendar event ends instantaneously. | 97 | * `end` (optional) exclusive end Unix timestamp in seconds. If omitted, the calendar event ends instantaneously. |
| 96 | * `start_tzid` (optional) time zone of the start timestamp, as defined by the IANA Time Zone Database. e.g., `America/Costa_Rica` | ||
| 97 | * `end_tzid` (optional) time zone of the end timestamp, as defined by the IANA Time Zone Database. e.g., `America/Costa_Rica`. If omitted and `start_tzid` is provided, the time zone of the end timestamp is the same as the start timestamp. | ||
| 98 | 98 | ||
| 99 | ```yaml | 99 | ```yaml |
| 100 | { | 100 | { |
| @@ -114,9 +114,6 @@ Aside from the common tags, this also takes the following tags: | |||
| 114 | ["start", "<unix timestamp in seconds>"], | 114 | ["start", "<unix timestamp in seconds>"], |
| 115 | ["end", "<unix timestamp in seconds>"], | 115 | ["end", "<unix timestamp in seconds>"], |
| 116 | 116 | ||
| 117 | ["start_tzid", "<IANA Time Zone Database identifier>"], | ||
| 118 | ["end_tzid", "<IANA Time Zone Database identifier>"], | ||
| 119 | |||
| 120 | // location | 117 | // location |
| 121 | ["location", "<location>"], | 118 | ["location", "<location>"], |
| 122 | ["g", "<geohash>"], | 119 | ["g", "<geohash>"], |