我很想知道更多关于什么触发了Safari中的Reader选项以及什么没有.我不打算实施任何会阻止它的东西,但作为一项技术练习很好奇.
以下是我到目前为止所学到的一些基本知识:
Safari will provide the 'Reader' if, with a H tag, and the following:
If you subtract 1 character from any of the above, the 'Reader' option is not available.
I should note that the character count of the H tag plays a part but sadly did not realize this when I determined …
Firefox 38.0.5在地址栏中添加了"Reader View":

但并非所有网站都会显示此图标,只有在检测到可读内容页面时才会显示.那么如何为我的网站启用此功能呢?
我尝试了介质打印和打印视图的额外样式表,但这没有效果:
<html>
<head>
<style>
@media print { /* no effect: */
.no-print { display:none; }
}
</style>
<!-- no effect either:
<link rel="stylesheet" href="print.css" media="print"><!-- -->
</head><body>
<h1>Some Title</h1>
<img class="no-print" src="http://dummyimage.com/1024x100/000/ffffff&text=This+banner+should+vanish+in+print+view">
<br><br><br>This is the only text
</body></html>
Run Code Online (Sandbox Code Playgroud)
我必须将哪些代码段添加到我的网站源代码中,以便我的网站访问者可以看到此图标图标?
所以iOS 5 Mobile Safari有这个新的阅读器功能,但我不明白它在我的网站上的运作方式以及我作为网络开发人员可以做些什么来确保网页与"阅读器"兼容.
有谁知道我在哪里可以找到关于此的文档,我知道它仍然处于测试阶段,但仍然应该有某些文档.据我所知,它似乎在寻找RSS提要?谁能详细说明?