We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caf6a63 commit 227869eCopy full SHA for 227869e
README.md
@@ -45,9 +45,6 @@ parse("2000-01-01").toUTCString()
45
More strict parsing compared with [Luxon’s `fromISO`](https://moment.github.io/luxon/#/parsing?id=iso-8601) (used in Eleventy v0.x through v3):
46
47
```
48
-2016 # Dropped
49
-2016-05 # Dropped
50
-201605 # Dropped, delimiter required if date is not 8 digits
51
2016-05-25
52
20160525
53
2016-05-25T09
@@ -59,6 +56,11 @@ More strict parsing compared with [Luxon’s `fromISO`](https://moment.github.io
59
56
2016-05-25T092415.123
60
57
2016-05-25T09:24:15,123
61
58
+# No YYYY or YYYYMM syntax
+2016 # Dropped
+2016-05 # Dropped
62
+201605 # Dropped
63
+
64
# No ISO week date syntax
65
2016-W21-3 # Dropped
66
2016W213 # Dropped
0 commit comments