Commit graph

4 commits

Author SHA1 Message Date
4715875cc4 Fix board dates to always be of the form YYYY-MM-DD
.. 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")
```
2024-03-22 11:31:45 -05:00
David Glaude
c1fbd47e6a
Update _board/m5stack_cardputer.md
Ack, as seen in YT stream.

Co-authored-by: foamyguy <foamyguy@gmail.com>
2024-03-11 23:25:21 +01:00
David Glaude
a15e726f75
Update m5stack_cardputer.md
Fix the copy/paste.
2024-03-11 23:00:33 +01:00
David Glaude
147768f445
Create m5stack_cardputer.md
Describe the m5stack_cardputer based on m5stack documentation.
Images not provided yet...
2024-03-10 20:24:16 +01:00