Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/guides/variables.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ unknown -> `{unknown_int_modifier({mod})}`
| Modifier | Description | Example | |
| -------- | -------------------------------------------------------- | ----------------------------------------- | ---------------------------------------------------------- |
| `locale` | Format the date to the locale provided or system default | `9/22/2024` -> `9/22/2024, 12:00:00 AM` | [locale/timezone configuration](#localetimezone-modifiers) |
| `time` | Format the date to the time provided | `9/22/2024` -> `9/22/2024` | [locale/timezone configuration](#localetimezone-modifiers) |
| `date` | Format the date to the date provided | `9/22/2024` -> `12:00:00 AM` | [locale/timezone configuration](#localetimezone-modifiers) |
| `time` | Format the date to the time provided | `9/22/2024` -> `12:00:00 AM` | [locale/timezone configuration](#localetimezone-modifiers) |
| `date` | Format the date to the date provided | `9/22/2024` -> `9/22/2024` | [locale/timezone configuration](#localetimezone-modifiers) |
| `unix` | Convert the date to a Unix timestamp | `9/22/2024` -> `1692819200000` |
| `iso` | Convert the date to an ISO string | `9/22/2024` -> `2024-09-22T00:00:00.000Z` |
| `utc` | Convert the date to UTC time | `9/22/2024` -> `2024-09-22T00:00:00.000Z` |
Expand Down