Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# library to clean up html [closed]

I was wondering if there is a library in .Net to clean up and remove unclosed tags in an html document?

like image 906
ryudice Avatar asked Nov 16 '25 07:11

ryudice


2 Answers

html agility pack

http://www.codeplex.com/htmlagilitypack

like image 152
Luke Schafer Avatar answered Nov 18 '25 21:11

Luke Schafer


HtmlTidy!

See the url below for more details:

http://www.devx.com/dotnet/Article/20505/0/page/2

The source of the download/project is:

http://tidy.sourceforge.net/

I gave the other link because it contains information about a .net wrapper and setting everything up. Hope this helps!

like image 39
codygman Avatar answered Nov 18 '25 20:11

codygman