From 3b9202465efa9f22a8cec7cf55916de943e5229d Mon Sep 17 00:00:00 2001 From: Vlad GURDIGA Date: Fri, 9 May 2025 15:36:49 +0300 Subject: [PATCH] docs: A lil Markdown fix (#803) Replaced square brackets with round ones in a link markup. --- docs/source/tutorials/options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/tutorials/options.md b/docs/source/tutorials/options.md index 598ae66d8..5dd9fa132 100644 --- a/docs/source/tutorials/options.md +++ b/docs/source/tutorials/options.md @@ -116,7 +116,7 @@ it defaults to false. For example, when set to true, a blank string would evalu **preserveTimezones** is a boolean effects only literal timestamps. When set to `true`, all literal timestamps will remain the same when output. This is a parser option, so Date objects passed to LiquidJS as data will not be affected. Note that `preserveTimezones` has a higher priority than `timezoneOffset`. -**dateFormat** is used to specify a default format to output dates. `%A, %B %-e, %Y at %-l:%M %P %z` will be used if not specified. For example, set `dateFormat: %Y-%m-%dT%H:%M:%S:%LZ` to output all dates in [JavaScript Date.toJson()][https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toJSON] format. +**dateFormat** is used to specify a default format to output dates. `%A, %B %-e, %Y at %-l:%M %P %z` will be used if not specified. For example, set `dateFormat: %Y-%m-%dT%H:%M:%S:%LZ` to output all dates in [JavaScript Date.toJson()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toJSON) format. ## Trimming