Hi,
Not a problem of the plugin, but of Infinity style and the HTML features of that given ad description. For starters, in Infinity all the description is shown in bold, so no difference for first phrase.
Then in infinity/css/style.css Line 26 you have this block:
ul {
padding: 0;
list-style-type: none;
}
That is getting that list to appear just as the rest of the text.
Add this at the bottom of style.css:
#description ul {
padding-left: 24px;
list-style-type: disc;
}
And at least you can see your bulleted list.
Regards