Use YAML Frontmatter for variables and overrides
mainAdd YAML frontmatter to the top of your Markdown files to define variables or override configuration.
Defining Variables: Variables defined in frontmatter are available as Liquid variables.
---
name: Rune Madsen
---
# About the author
The author, {{ name }}, was born in Denmark.Overriding Configuration: You can override the following configuration keys per file:
layout(set tononeto disable)includes
---
name: Rune Madsen
---
# About the author
The author, {{ name }}, was born in Denmark.