Dave Pearson: blogmore.el v5.2.0

Wait 5 sec.

Another quick update toblogmore.el, again to fix an issueI've run into with the new frontmatter-handling code. This time it's toaddress an actual crash that could happen if a property was available butempty. For example, if a post had frontmatter that looked like this:title: "blogmore.el v5.2.0"date: "2026-06-12 08:31:15+0100"category: Emacstags:And I then went to use blogmore-add-tag, I'd get a crash saying:Wrong type argument: sequencep, :nullThe reason being that tags was being parsed with a value of :null,rather than (as before) having a value of nil (which of course meant I hada nice empty list to do things with). It was an easy enough fix.At this point I think I've managed to shake out any serious issues with theproper YAML-parsing approach to frontmatter, as I've used it to write ahandful of posts now.