How to use Microdata to represent similar products on the ItemPage?
问题 I am trying to use Microdata to define my website using the Schema.org definitions. Below is my current HTML markup: <body itemscope itemtype="http://schema.org/ItemPage"> <link itemprop="url" href="https://example.com/i/10" /> <main role="main"> <!-- Show the main product of the page --> <div itemprop="mainEntity" itemtype="http://schema.org/Product" itemscope> <meta itemprop="name" content="My Main Product 10 Name" /> <!-- ... more properties that describes current product --> </div> <!--