A C# port of standalone version of the readability library used for Firefox Reader View.
Readability is available on Nuget:
dotnet add package ReadabilityLib
You can then using Readability;
it.
To parse an article, you need to call Parse()
method on a Brackets Document
object. Here's an example:
var document = await Document.Html.ParseAsync(documentContentStream);
var article = document.Parse();