This "OL_DOC.DH" tag is used to define the start of an unnumbered list. The list ends when the "<$eImgListCompact>" tag is encountered. Lists can be nested.
Each list item begins with "<$li>". List items are not separated by a blank line, if this is not desired then use the "<$ImgList>" tags instead.
It is up to you to create the "bullet" images that the list requires.
<$ImgListCompact "BULLET">
<$li>Item1
<$li>Item2
<$eImgListCompact>
The "BULLET" positional parameter refers to a previously defined image (with <$DefineImage>) which we wish to use for the list.
;--- Define the "bullet" ---
<$DefineImage ALIAS="BLUEBALL" IMAGE="BLUEBALL">
;--- Create a small list ---
<$ImgListCompact "BLUEBALL">
<$li>Item1
<$li>Item2
<$eImgListCompact>