I have a front matter array of “years” that is always sequential with no skipped values, like:
years:
- 2018
- 2019
- 2020
- 2021
- 2022
Is there a shorthand means of defining such an array, something like [ 2018 .. 2022 ]
? Or if I define this front matter…
firstYear: 2019
lastYear: 2022
…Is there syntax that will let me range over the first and last values including those in between?