Tidy only recognizes xml elements whose names begin with a letter character. Sample input ``` <?xml version="1.0" encoding="UTF-8"?><form><_a></_a><:b></:b></form> ``` Current output ``` <?xml version="1.0" encoding="utf-8"?> <form><_a></_a><:b></:b></form> ``` Expected output ``` <?xml version="1.0" encoding="utf-8"?> <form> <_a></_a> <:b></:b> </form> ``` Tidy config ``` input-xml: yes output-xml: yes ``` Tidy version ``` tidy --version HTML Tidy for Windows version 5.4.0 ```