What:
Replace all instances of data: > with data: | in YAML code samples that embed multi-line manifests, especially under fields like raw: or data:.
Where:
All documentation files containing embedded YAML or scripts intended for copy-paste, e.g., chaos-workflow.md.
Why:
Using | (literal block scalar) ensures line breaks and YAML structure are preserved. This prevents copy-paste errors and makes examples directly reusable, whereas > (folded block scalar) collapses lines and corrupts embedded YAML manifests.
Benefit:
Ensures users can copy and use provided YAML examples without formatting or parsing issues.