# YAML metadata in Markdown This is a source code repository for the blog post ## Setup ```bash git clone https://git.peterbabic.dev/demo/yaml-metadata-in-markdown.git cd yaml-metadata-in-markdown npm install node . ``` This should produce the JSON ouput containing parsed Front Matter in a form of YAML from the [example.md](example.md) ```json { "Title": "Post about the Front Matter", "Category": "programming", "Tags": ["markdown", "yaml", "metadata"] } ``` ## License MIT