For web pages which have a HTML root tag with a class attribute whose value matches the removal criteria of Readability.js
the pageTitle is undefined
baseURI point to chrome-extension://nghfdnngoejlhedogdpikdlkmdfoojii/_generated_background_page.html rather than the actual web page
local links are incorrect
The problem is that Readability.ls removes the <html> root tag, as a consequence, uses the wrong urls. Also, Markdownload loses access to the page meta-data.
This pull request fixes issue #260 by removing the class attribute from the <html> root tag.
Following sites mentioned in issue #260 work correctly with this fix:
For web pages which have a HTML root tag with a
class
attribute whose value matches the removal criteria ofReadability.js
The problem is that
Readability.ls
removes the<html>
root tag, as a consequence, uses the wrong urls. Also,Markdownload
loses access to the page meta-data.This pull request fixes issue #260 by removing the class attribute from the
<html>
root tag.Following sites mentioned in issue #260 work correctly with this fix:
Note: This does not fix issue #201 !