Html tidy pack replaces `<` instead of `< `and `>` instead of `>` for html tag.
- by Harikrishna
I am tidying the html page by html tidy pack because there are some pages with missing ending tags So I can add the missing closing tags by html agility pack. But some times when I use the html tidy pack then that web page has changes like :
If original table is
<table><tr><td>first row</td></table>
After using html tidy pack the table is :
<table> is now < table >. But I want like <table>.
In this particular example it works perfectly but in some html page it replace < instead of <and > instead of >.