@@ -173,7 +173,7 @@ The following configuration options are available for posts:
173
173
174
174
[`post_url_date_format`](#+blog.post_url_date_format){ # +blog.post_url_date_format }
175
175
176
- : :octicons-milestone-24 : Default: `YYYY /MM/dd` – This option specifies the
176
+ : :octicons-milestone-24 : Default: `yyyy /MM/dd` – This option specifies the
177
177
date format that is used in the URL of the post. The format string must
178
178
adhere to [Babel]'s [pattern syntax]. Some examples :
179
179
@@ -182,23 +182,23 @@ The following configuration options are available for posts:
182
182
` ` ` yaml
183
183
plugins:
184
184
- blog:
185
- post_url_date_format: YYYY /MM/dd
185
+ post_url_date_format: yyyy /MM/dd
186
186
` ` `
187
187
188
188
=== ":material-link : blog/2022/01/:material-dots-horizontal:/"
189
189
190
190
` ` ` yaml
191
191
plugins:
192
192
- blog:
193
- post_url_date_format: YYYY /MM
193
+ post_url_date_format: yyyy /MM
194
194
` ` `
195
195
196
196
=== ":material-link : blog/2022/:material-dots-horizontal:/"
197
197
198
198
` ` ` yaml
199
199
plugins:
200
200
- blog:
201
- post_url_date_format: YYYY
201
+ post_url_date_format: yyyy
202
202
` ` `
203
203
204
204
If you want to exclude the date altogether, e.g. when your blog features
@@ -368,7 +368,7 @@ The following configuration options are available for archive index generation:
368
368
369
369
[`archive_date_format`](#+blog.archive_date_format){ # +blog.archive_date_format }
370
370
371
- : :octicons-milestone-24 : Default: `YYYY ` – This option specifies the date
371
+ : :octicons-milestone-24 : Default: `yyyy ` – This option specifies the date
372
372
format that is used when archive indexes are rendered. The format string
373
373
must adhere to [Babel]'s [pattern syntax]. Popular settings are :
374
374
@@ -377,20 +377,20 @@ The following configuration options are available for archive index generation:
377
377
` ` ` yaml
378
378
plugins:
379
379
- blog:
380
- archive_date_format: YYYY
380
+ archive_date_format: yyyy
381
381
` ` `
382
382
383
383
=== "January 2022"
384
384
385
385
` ` ` yaml
386
386
plugins:
387
387
- blog:
388
- archive_date_format: MMMM YYYY
388
+ archive_date_format: MMMM yyyy
389
389
` ` `
390
390
391
391
[`archive_url_date_format`](#+blog.archive_url_date_format){ # +blog.archive_url_date_format }
392
392
393
- : :octicons-milestone-24 : Default: `YYYY ` – This option specifies the date
393
+ : :octicons-milestone-24 : Default: `yyyy ` – This option specifies the date
394
394
format that is used in the archive index URL. The format string must adhere
395
395
to [Babel]'s [pattern syntax]. Some examples :
396
396
@@ -399,15 +399,15 @@ The following configuration options are available for archive index generation:
399
399
` ` ` yaml
400
400
plugins:
401
401
- blog:
402
- archive_url_date_format: YYYY
402
+ archive_url_date_format: yyyy
403
403
` ` `
404
404
405
405
=== ":material-link : blog/archive/2022/01/"
406
406
407
407
` ` ` yaml
408
408
plugins:
409
409
- blog:
410
- archive_url_date_format: YYYY /MM
410
+ archive_url_date_format: yyyy /MM
411
411
` ` `
412
412
413
413
[`archive_url_format`](#+blog.archive_url_format){ # +blog.archive_url_format }
0 commit comments