AMP 文章微数据中的 SVG 图像?

SVG images in AMP article Microdata?

当尝试根据 Google 的 Structured Data Testing Tool 验证 schema.org/Article 时,我注意到如果您指定 SVG 图像,它会出错:

The value provided for logo must be a valid URL.

Required by:

AMP Articles (what's this?)

当 URL 更改为具有 .png(或 .jpg.bmp.webp 等)扩展名时,而不是 .svg,验证通过。

这是我正在使用的示例:

<div itemscope itemtype="http://schema.org/Article">
    <div itemprop="publisher" itemscope itemtype="https://schema.org/Organization">
        <meta itemprop="name" content="Example" />
        <meta itemprop="url" content="http://example.com" />
        <div itemprop="logo" itemscope itemtype="https://schema.org/ImageObject">
            <meta itemprop="url" content="http://example.com/logo.svg" />
            <meta itemprop="width" content="600" />
            <meta itemprop="height" content="60" />
        </div>
    </div>
    <meta itemprop="dateModified" content="2016-01-05T12:43" />
    <meta itemprop="datePublished" content="2016-01-05T12:43" />
    <meta itemprop="headline" content="Example" />
    <meta itemprop="name" content="Example" />
    <meta itemprop="author" content="Example" />
    <link itemprop="mainEntityOfPage" href="http://example.com/article" />
    <div itemprop="image" itemscope itemtype="https://schema.org/ImageObject">
        <meta itemprop="url" content="http://example.com/article.jpg" />
        <meta itemprop="width" content="1200" />
        <meta itemprop="height" content="800" />
    </div>
</div>

更改其他图像的 URL 扩展名也会产生错误。

我无法在 Rich Snippets documentation or the AMP HTML spec 中找到有关它拒绝 SVG 的原因的任何信息。有人对此行为有解释吗?

来自您提供的链接之一:https://developers.google.com/structured-data/rich-snippets/articles

Images should be in .jpg, .png, or. gif format.

为什么?谁知道。可能是因为 SVG 在某些浏览器(尤其是较旧的浏览器)中仍然存在一些支持问题。

Google 更新了 documentation 并特别提到了 svg。

徽标图像文件应该是光栅文件(例如 .jpg、.png、.gif),而不是矢量文件(例如 .svg),并且没有动画。