I would like to use YAML front matter as a metadata holder for a general-purpose data manager, for example:
---
layout: "user"
title: "Mario Brega"
slug: "mario-brega"
skills:
- fire
- water
- leaf
---
yes I will, _I swear_
It is used by many static generators like:
Question: is there a standard for this? Some tools that I can easily check with, for example, agree that all string values should be quoted, that booleans should not, etc.
Matching a YAML element before a JSON schema will be a big plus.
source
share