sssg/metadata.md
yourfriendoss a5109e1b20
All checks were successful
/ build (node-16) (push) Successful in 1m14s
/ build (windows-node-iron) (push) Successful in 1m52s
Beautiful
2025-11-17 15:54:45 +02:00

582 B

Metadata Format

This format stores metadata at the top of a file using key=value pairs.

Structure

key=value
key=value
key=value
====
(rest of the file)
  • Each line before the separator must be key=value.
  • The separator is a line containing only = characters (like === or ====).
  • Anything after the separator is regular file content.

Example

title=My Song
artist=Pink Floyd
year=1973
====
Lyrics go here...

Parsed Result

{
  "title": "My Song",
  "artist": "Pink Floyd",
  "year": "1973"
}