YAML Formatter
Format and validate YAML with consistent indentation and optional key sorting.
Convert .properties files to YAML with optional dot-key expansion. Also supports YAML → Properties.
A tool that converts Java-style .properties files into YAML format.
It can expand dot-notation keys like app.name=My App into a properly nested YAML structure.
Reverse conversion (YAML → Properties) is also supported, making it easy to switch between application.properties and application.yml in Spring Boot projects.
A common pattern in Java .properties files like `app.name=My App`. You can output these as flat YAML keys or expand them into a nested structure under `app:`.
Yes. Enable "Expand dot-notation keys" and the output will match the application.yml nested format used by Spring Boot.
Comments (lines starting with
When converting YAML → Properties, arrays are flattened to `key[0]=value` style entries.
No. All processing happens entirely in your browser.