⚡ Dev Tooling Online
/
YAML → XML
⌘K
YAML Tools:
YAML Formatter
YAML → XML
YAML → CSV
YAML → XML
Convert YAML to XML format.
Root tag:
Copy XML
YAML Input
person: name: Alice age: 30 hobbies: - reading - coding address: city: Vancouver country: Canada
XML Output
<?xml version="1.0" encoding="UTF-8"?> <root> <person> <name>Alice</name> <age>30</age> <hobbie>reading</hobbie> <hobbie>coding</hobbie> <address> <city>Vancouver</city> <country>Canada</country> </address> </person> </root>