Matter is our generic term for web page file front matter.
Various blog tools can use front matter with various flavors, meaning various formats such as HTML, or JSON, or TOML, or YAML.
Sita can use any of these flavors.
Example of front matter with HTML:
<!--
title: Hello World
contact: [email protected]
-->
Content starts here.
Example of front matter with JSON:
{
"title": "Hello World",
"contact": "[email protected]"
}
Content starts here.
Example of front matter with TOML:
+++
title = "Hello World"
contact = "[email protected]"
+++
Content starts here.
Example of front matter with YAML:
---
title: Hello World
contact: [email protected]
---
Content starts here.
Example of front matter with Markdown comments:
[//]: # (title: Hello World)
[//]: # (contact: [email protected])
Content starts here.