docs: fix outdated output examples in README

This commit is contained in:
2026-06-19 23:50:06 +02:00
parent 22b1734734
commit 4850da7092

View File

@@ -15,7 +15,7 @@ Full RFC 5545 coverage is intentionally out of scope — see [Limitations](#limi
| All-day multi-day | `REM date THROUGH date MSG …` |
| Timed event (UTC, local, TZID) | `REM date AT HH:MM DURATION HH:MM MSG …` |
| Yearly recurrence (`FREQ=YEARLY`) | `REM MMM DD MSG …` |
| Weekly recurrence (`FREQ=WEEKLY`) | `REM Mon Wed FROM … UNTIL … MSG …` |
| Weekly recurrence (`FREQ=WEEKLY`) | `REM Mon Wed YYYY-MM-DD *7 UNTIL … MSG …` |
| Daily recurrence (`FREQ=DAILY`) | `REM date *N UNTIL … MSG …` |
| Monthly by day-of-month (`BYMONTHDAY`) | `REM N FROM … UNTIL … MSG …` |
| Monthly by nth weekday (`BYDAY=nWD`) | `REM Wd N FROM … UNTIL … MSG …` |
@@ -156,7 +156,7 @@ REM \
REM \
INFO "UID: xyz@google.com" \
INFO "Calendar: WORK" \
2026-05-27 AT 10:00 +30 DURATION 01:00 MSG %"Team standup%" (%1)
2026-05-27 AT 10:00 +30 DURATION 01:00 MSG %"Team standup%" (%b %3)
```
### Weekly recurrence with exception
@@ -167,7 +167,7 @@ OMIT 6 Oct 2025
REM \
INFO "UID: …" \
INFO "Calendar: WORK" \
Mon 2025-09-01 *7 UNTIL 2025-12-31 SKIP AT 09:00 +15 MSG %"Standup%" (%1)
Mon 2025-09-01 *7 UNTIL 2025-12-31 SKIP AT 09:00 +15 MSG %"Standup%" (%b %3)
POP-OMIT-CONTEXT
```