diff --git a/streamerbot/2.guide/03.variables.md b/streamerbot/2.guide/03.variables.md index 90dd7f81..8073b6eb 100644 --- a/streamerbot/2.guide/03.variables.md +++ b/streamerbot/2.guide/03.variables.md @@ -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 :: diff --git a/streamerbot/3.api/1.sub-actions/core/quotes/get-quote.md b/streamerbot/3.api/1.sub-actions/core/quotes/get-quote.md index d6033e87..0b87a898 100755 --- a/streamerbot/3.api/1.sub-actions/core/quotes/get-quote.md +++ b/streamerbot/3.api/1.sub-actions/core/quotes/get-quote.md @@ -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 @@ -52,4 +56,4 @@ csharpMethods: - GetQuote --- -:read-more{to=/examples/quotes-commands} \ No newline at end of file +:read-more{to=/examples/quotes-commands}