AMP HTML附带了一些新的html标签,这些标签通过javascript转换为普通元素......例如
<div>
<amp-img width=500 height=500 src="https://placekitten.com/g/500/500">
</amp-img>
</div>
(文档中的示例)
但是谷歌机器人和其他搜索引擎如何将这样的图像编入索引?
Googlebot会将amp-img
索引为普通图片吗?
其他人呢...... Bing,Yahoo,......?
或者对于图像索引,我们应该使用一些polyfill,如:
<div>
<amp-img width=500 height=500 src="https://placekitten.com/g/500/500">
</amp-img>
<noscript>
<img width=500 height=500 src="https://placekitten.com/g/500/500">
</noscript>
</div>
或
<div>
<amp-img width=500 height=500 src="https://placekitten.com/g/500/500">
<noscript>
<img width=500 height=500 src="https://placekitten.com/g/500/500">
</noscript>
</amp-img>
</div>
我在文档中找不到任何相关内容。