Is there a conversion tool for XML to YAML? [closed] Is there a conversion tool for XML to YAML? [closed] xml xml

Is there a conversion tool for XML to YAML? [closed]


UPDATE: Editing this answer as I realize today when I wrote it, I had a little experience with YAML.

YAML stands for YAML Ain't Markup Language. Having said that, XML (eXtensible Markup Language) is. So theoretically, you would have feature limitations converting one to another (in this case XML to YAML..) although YAML, having experienced it while creating AWS Stacks, seems to be more "human" friendly in comparison to XML.

A) You could use an online tool (although you must be careful. Your company policies might concern you about uploading software specs online):

B) You could use a C# (.NET) to convert XML to YAML.

There are NuGet packages available providing you Serialization tools allow your app do that in the code. (See: https://www.nuget.org/packages?q=yaml)

C) Worse case scenario - and I'm not liking my original idea: you could build an XSL file would help you to transform an XML file to literally any other text format (hypertext content). XSL Reference: MSDN