Schema.orgは、Web の有用なコンテンツごとにスキーマを提供します。たとえば、ここでは「レシピ」のスキーマを見つけることができます。ご覧のとおり、テキストであると予想されるプロパティがいくつかあります (たとえば、レシピ カテゴリを参照してください)。ただし、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>
また、検索エンジンへの影響はどれですか?