Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion streamerbot/2.guide/03.variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ Read more about all supported numeric format strings
### Date and Time
Similarly, `%time%`{lang=cs} can be formatted in short notation with AM/PM using the following syntax: `%time:t%`{lang=cs}

::read-more{to=https://learn.microsoft.com/en-us/dotnet/standard/base-types/standard-date-and-time-format-strings target=_blank rel=noopener}
::read-more{to=https://learn.microsoft.com/en-us/dotnet/standard/base-types/custom-date-and-time-format-strings target=_blank rel=noopener}
Read more about all supported date and time format strings
::

Expand Down
12 changes: 8 additions & 4 deletions streamerbot/3.api/1.sub-actions/core/quotes/get-quote.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,16 @@ parameters:
description: The specific quote ID to fetch, only used if `Type` is set to `Specific`
variables:
- name: quoteTimestamp
type: string
description: The date and time that the quote was made
type: DateTime
description: |
The date and time that the quote was made. Can be formatted with `DateTime` format strings.
::read-more{to=/guide/variables#date-and-time}
Read more about date and time format strings
::
value: 1/29/2022 12:00:00 AM
- name: quoteTime
type: string
description: The date that the quote was made
description: The date that the quote was made, formatted in accordance with your computer's "Short date" format setting
value: 10/17/2025
- name: quoteId
type: string
Expand Down Expand Up @@ -52,4 +56,4 @@ csharpMethods:
- GetQuote
---

:read-more{to=/examples/quotes-commands}
:read-more{to=/examples/quotes-commands}
Loading