Results 14 comments of craignicol

Actually, mine might be a slightly different issue. I found all the affected notes, and they all have a : character in the title, which I guess breaks the yaml...

I've written a bare bones yaml parser for some of this myself, and the key issue seems to be : or - signs in the value. YAML spec allows anything...

I had the same issue with the Typescript front matter parser, so I ended up with this simple implementation, which I'm sure has its own bugs https://github.com/zettel-lint/zettel-lint/commit/e412f667b0bbe9a620ce7a35d9f40943b88fc69e

Additional things I've noticed : tags are removed if the line contains # If value is empty, it's written as null when saved. I think this should remain empty, or...