Getting double the content, page is repeated twice in the TranscodingResult
Opened this issue · 0 comments
When running NReadability on the following URL:
http://www.internationalreview.co.uk/music/johnny-hodges/
It returns the extracted content twice. If there is a chance of checking that it isn't just me, and that someone else get's the same issue, that would be great.
var input = new TranscodingInput(htmlContent) { DomSerializationParams = new DomSerializationParams { DontIncludeContentTypeMetaElement = true, DontIncludeDocTypeMetaElement = true, DontIncludeGeneratorMetaElement = true, DontIncludeMobileSpecificMetaElements = true, PrettyPrint = true } }; var transcodedContent = transcoder.Transcode(input);
Where htmlContent is the html string extracted as UTF-8 encoding from the url: http://www.internationalreview.co.uk/music/johnny-hodges/
Many thanks...