The Inset store tag can be written in two different ways.
Let's say you add an item with an ID of 10 to Catalog Manager, and this item contains an inset. You have the following choices when creating the store tag to display your item's inset.
Version 1
<!--#ystore_catalog id="10" field="inset" format="html" -->
This is the most straightforward way to display your item's inset using a store tag. This store tag would display the inset on your web page wherever you inserted it.
Note: Because there are two different ways to use the Inset store tag, the Store Tag Wizard will not automatically insert format="html". If you are using the Inset store tag, you must add format="html" inside the store tag for the image to appear.
Version 2
If you would like to customize the presentation of your inset (for example, to include an alt tag, border setting, or alignment setting) you could use the following version of the Inset store tag.
<!--#ystore_catalog id="10" field="inset" -->
Using this store tag generates the inset's URL (that portion of an HTML <img> tag that normally appears in quotes) as indicated in bold text below.
<img src="your_inset_URL" -->
If you use this version of the Inset store tag, be sure to place it within an <img> tag or other appropriate HTML tag, as in the example below. Otherwise, your web page may not display properly.
<img src="<!--#ystore_catalog id="10" field="inset" -->" height="X" width="X" alt="your alt text here" -->