From 354543c97dbbc7296f68c35db462a9dac30cb9b1 Mon Sep 17 00:00:00 2001 From: Emily Aviva Kapor-Mater Date: Mon, 19 Mar 2018 17:28:06 -0700 Subject: add clarifying example and text for date/time offsets --- toml.html.markdown | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'toml.html.markdown') diff --git a/toml.html.markdown b/toml.html.markdown index 980563f9..39caaa23 100755 --- a/toml.html.markdown +++ b/toml.html.markdown @@ -102,9 +102,10 @@ boolMustBeLowercase = true # Datetime # ############ -date1 = 1979-05-27T07:32:00Z # follows the RFC 3339 spec -date2 = 1979-05-27T07:32:00 # without offset -date3 = 1979-05-27 # without offset nor time +date1 = 1979-05-27T07:32:00Z # UTC time, following RFC 3339/ISO 8601 spec +date2 = 1979-05-26T15:32:00+08:00 # with RFC 3339/ISO 8601 offset +date3 = 1979-05-27T07:32:00 # without offset +date4 = 1979-05-27 # without offset or time #################### # COLLECTION TYPES # -- cgit v1.2.3 From d490ed15897be373b482abf50ea3828059ac01c9 Mon Sep 17 00:00:00 2001 From: Divay Prakash Date: Wed, 15 Aug 2018 17:26:28 +0530 Subject: Fix build error in 'build/docs/toml/index.html' --- toml.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toml.html.markdown') diff --git a/toml.html.markdown b/toml.html.markdown index 39caaa23..814e57e7 100755 --- a/toml.html.markdown +++ b/toml.html.markdown @@ -12,7 +12,7 @@ It is an alternative to YAML and JSON. It aims to be more human friendly than JS Be warned, TOML's spec is still changing a lot. Until it's marked as 1.0, you should assume that it is unstable and act accordingly. This document follows TOML v0.4.0. -```toml +``` # Comments in TOML look like this. ################ -- cgit v1.2.3