If you have a comma separated list and you want to display it in an eBay listing as bullet points you can use the following javascript:
function makeBullets(arg1) {
var visitorName = "
";
var myOldString = arg1;
var myNewString = "
- " + myOldString.split(",").join("
- ") + "
";
return myNewString;
}
Then place the following script where you want the bullets to display in the HTML:
var origtext = makeBullets("#?Content?#")
document.write(origtext);