NReadability cleans up hard-to-read articles on the Web. It's a tool for removing clutter from HTML pages so that they are more enjoyable to read.
The NReadability package consists of the .NET class library and a simple console application.
NReadability is a C# port of Arc90's Readability bookmarklet.
You can start using NReadability right away by installing the NuGet package:
In order to transcode content downloaded from the Web:
vartranscoder=newNReadabilityTranscoder();stringcontent;using(varwc=newWebClient()){content=wc.DownloadString("https://github.com/marek-stoj/NReadability");}boolsuccess;stringtranscodedContent=transcoder.Transcode(content,outsuccess);Or even simpler:
vartranscoder=newNReadabilityWebTranscoder();boolsuccess;stringtranscodedContent=transcoder.Transcode("https://github.com/marek-stoj/NReadability",outsuccess);