.. leading zeros are required for `frontmatter` to treat them as dates
rather than strings, apparently per the YAML specification.
This was done by script:
```py
import re
import datetime
import pathlib
import sys
import frontmatter
rx = re.compile(r'^(\s*)date_added:.*$', re.M)
for path_str in sys.argv[1:]:
print(path_str)
path = pathlib.Path(path_str)
post = frontmatter.load(path)
date_added = post.get("date_added", "")
if isinstance(date_added, datetime.date):
continue
if isinstance(date_added, str):
try:
date_added = datetime.datetime.strptime(date_added, "%Y-%m-%d")
except ValueError as exc:
print(f"Failed to parse date {date_added} in {path_str}: {exc}")
continue
date_added = date_added.date()
content = path.read_text("utf-8")
new_content = rx.sub(lambda m: f"{m.group(1)}date_added: {date_added}", content)
assert content != new_content
path.write_text(new_content, "utf-8")
```
20 lines
592 B
Markdown
20 lines
592 B
Markdown
---
|
|
layout: download
|
|
board_id: "sparkfun_samd21_mini"
|
|
title: "SAMD21 Mini Download"
|
|
name: "SAMD21 Mini"
|
|
manufacturer: "SparkFun"
|
|
board_url:
|
|
- "https://www.sparkfun.com/products/13664"
|
|
board_image: "sparkfun_samd21_mini.jpg"
|
|
date_added: 2019-03-09
|
|
family: atmel-samd
|
|
bootloader_id: sparkfun-samd21-mini
|
|
features:
|
|
- Breadboard-Friendly
|
|
---
|
|
|
|
The SAMD21 Mini Breakout is a Pro Mini-sized breakout for the Atmel ATSAMD21G18, a 32-bit ARM Cortex-M0+ processor with 256KB flash, 32KB SRAM, and an operating speed of up to 48MHz.
|
|
|
|
## Purchase
|
|
* [SparkFun](https://www.sparkfun.com/products/13664)
|