Why convert YAML to .properties?
Some deployment targets and older Java tooling only read .properties files. Paste a YAML mapping above and get flattened dotted keys, ready for Spring Boot or any java.util.Properties consumer.
How it works
The converter parses your YAML locally (anchors and merge keys resolved) and walks the tree,
joining nested keys with dots and indexing lists as key[i]. Backslashes, separators and
newlines are escaped so the output parses back identically.