Schema.org为 Web 中的每个有用内容提供了一个模式。例如,在这里您可以找到“食谱”的架构。正如您所看到的,有几个属性应该是文本(参见例如recipeCategory)。但是,有些属性可以包含 html img标签,例如recipeInstructions应该包含文本和视觉说明。您认为在预期为文本的属性中包含图像是否正确?在实践中,您认为以下代码是否正确:
<div itemprop="recipeInstructions">
<p>Preheat the oven to 350 degrees. Mix in the ingredients in a bowl.</p>
<img src="path" title="Mixed ingredients">
<p>Add the flour last. Pour the mixture into a loaf pan and bake for one hour.</p>
</div>
或下一个:
<div itemprop="recipeInstructions">
<p>Preheat the oven to 350 degrees. Mix in the ingredients in a bowl.</p>
<p>Add the flour last. Pour the mixture into a loaf pan and bake for one hour.</p>
</div>
而且,对搜索引擎有哪些影响?