Skip to main content

Using Lists in the Product Description

In a product description, it is possible to create a list of items that shows up nicely on the shop.

  1. In Foresee, under the Webshop Settings for your customer, look for the setting USE_MARKDOWN -- this should be set to True.
  2. In the product description, you can then write a list in Markdown:
This product is <b>_really nice_</b>! It has the following features:

- 2 screens
- No wires
- Bluetooth
- 6g internet connection
- 120hr battery life

This will generate the following HTML code:

This product is <b><em>really nice</em></b>! It has the following features:
<ul>
<li>2 screens</li>
<li>No wires</li>
<li>Bluetooth</li>
<li>6g internet connection</li>
<li>120hr battery life</li>
</ul>