You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The marshaler should quote strings that have YAML's date format. For example, the go string "2024-09-19T01:52:55.944" should be marshaled as '2024-09-19T01:52:55.944', with the quotes, but is currently marshaled without quotes.
The marshaler should quote strings that have YAML's date format. For example, the go string "2024-09-19T01:52:55.944" should be marshaled as '2024-09-19T01:52:55.944', with the quotes, but is currently marshaled without quotes.
SSCCE:
Should output:
foo: '2024-09-19T01:52:55.944'
But instead outputs
foo: 2024-09-19T01:52:55.944
The text was updated successfully, but these errors were encountered: