From b55ed7002f899938f1574c7d7c9f466e9b251e05 Mon Sep 17 00:00:00 2001 From: Timo Wolf Date: Thu, 26 Mar 2026 14:03:11 +0100 Subject: [PATCH] fix: quote the time formats colon :mm: to avoid flag rendering The format :mm: is interpreted as a flag when the markdown plugins are available. Quoting \:mm\: helps. --- docs/guidelines/language/formatting/timezones.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guidelines/language/formatting/timezones.mdx b/docs/guidelines/language/formatting/timezones.mdx index b17476a33..7ac2ba886 100644 --- a/docs/guidelines/language/formatting/timezones.mdx +++ b/docs/guidelines/language/formatting/timezones.mdx @@ -35,7 +35,7 @@ Use colons (:) to split times between hours, minutes, and seconds.
-- hh:mm:ss +- hh\:mm\:ss
@@ -50,8 +50,8 @@ Use periods (.) to add milliseconds and nanoseconds, not a colon (:) according t
-- hh:mm:ss.mms -- hh:mm:ss.sss (ISO 8601 standard) +- hh\:mm\:ss.mms +- hh\:mm\:ss.sss (ISO 8601 standard) - 0:00:00.920
@@ -279,4 +279,4 @@ Use "recent" for past events that have just happened. - [Dates](./date.mdx) - [Time picker](../../../components/time-picker/index.mdx) -- [CLDR set of time zones (external link)](https://cldr.unicode.org/translation/time-zones-and-city-names) \ No newline at end of file +- [CLDR set of time zones (external link)](https://cldr.unicode.org/translation/time-zones-and-city-names)