I would like to use YAML front matter as a metadata holder for a general purpose data manager, e.g.:
---
layout: "user"
title: "Mario Brega"
slug: "mario-brega"
skills:
- fire
- water
- leaf
---
# Here I will be using Markdown
yes I will, _I swear_
It is used by many static generators as:
Question: is there a standard for that? Some tools that I can easily validate against, that for instance agree that all string values should be wrapped in quotes, that booleans should not, and so on.
Mapping the YAML front matter to a JSON schema would be a big plus.