Below is an example of the original XML Formatter and the result.
Original XML Formatter Example<?xml version="1.0" encoding="UTF-8" ?> <root> <row> <album>yttags</album> <year>2022</year> <US_peak_chart_post>-</US_peak_chart_post> </row> <row> <album>pakainfo</album> <year>2018</year> <US_peak_chart_post>-</US_peak_chart_post> </row> <row> <album>infogreeper</album> <year>20.01</year> <US_peak_chart_post>61</US_peak_chart_post> </row> <row> <album>infinity</album> <year>2003</year> <US_peak_chart_post>6</US_peak_chart_post> </row> <row> <album>guest-posting-sites</album> <year>2005</year> <US_peak_chart_post>3</US_peak_chart_post> </row> <row> <album>webix-infoway</album> <year>2007</year> <US_peak_chart_post>2</US_peak_chart_post> </row> <row> <album>healthkeet</album> <year>2010</year> <US_peak_chart_post>11</US_peak_chart_post> </row> <row> <album>seokeet</album> <year>2011</year> <US_peak_chart_post>-</US_peak_chart_post> </row> </root>
And an example of how the online XML Formatter works.
XML Formatter Result<?xml version="1.0" encoding="UTF-8" ?> <root> <row> <album>yttags</album> <year>2022</year> <US_peak_chart_post>-</US_peak_chart_post> </row> <row> <album>pakainfo</album> <year>2018</year> <US_peak_chart_post>-</US_peak_chart_post> </row> <row> <album>infogreeper</album> <year>20.01</year> <US_peak_chart_post>61</US_peak_chart_post> </row> <row> <album>infinity</album> <year>2003</year> <US_peak_chart_post>6</US_peak_chart_post> </row> <row> <album>guest-posting-sites</album> <year>2005</year> <US_peak_chart_post>3</US_peak_chart_post> </row> <row> <album>webix-infoway</album> <year>2007</year> <US_peak_chart_post>2</US_peak_chart_post> </row> <row> <album>healthkeet</album> <year>2010</year> <US_peak_chart_post>11</US_peak_chart_post> </row> <row> <album>seokeet</album> <year>2011</year> <US_peak_chart_post>-</US_peak_chart_post> </row> </root>