Adding markup to potentially "readable" tags, such as p and div , can cause the Readability algorithm to ignore the tag, thereby lowering the rating, hopefully to the point that it does not cause the Reader display icon.
Looking at the source of Readability, one of the areas for this is the id and class attributes, as this is matching patterns based on combined data from these two attributes. For example, adding the class "comment", for example
<p class="myClass comment">...</p>
will ignore this item. A template that matches for "unlikely" candidates:
/combx|comment|disqus|foot|header|menu|rss|shoutbox|sidebar|sponsor/i
Placing flags for items that can be added to the Readability metric can allow you to disable the Reader icon.
Quantastical Mar 14 '13 at 19:27 2013-03-14 19:27
source share