I would love to be able to manipulate `TOML` frontmatter using `yq`. I can do this today with `YAML` which is super nice like this: ```sh yq --front-matter="process" '.updated_at = now ``` TOML frontmatter uses `+++` as delimiters, so we should be able to use the same syntax.