The YAML mistakes that break builds
- Inconsistent indentation — list items at a different depth from their siblings (the sample above has one).
- Tabs — YAML forbids tab characters for indentation.
- Duplicate keys — the second silently overwrites the first in many tools; this validator flags it.
- Unquoted colons —
title: Note: read meneeds quotes around the value.
See how YAML was interpreted
The JSON preview shows exactly what a parser sees, which catches the silent problems: version: 1.10 becoming the number 1.1, or country: NO being read differently by YAML 1.1 tools.