I copied the bulleted list code from the sCode Reference page. It created the neat line spacing but no bullets. https://subeta.net/petinfo.php?petid=6009269. It's the same when trying to do a numbered list. EDIT - Problem solved with coding provided by spacemage
Copying the same bulleted list code in this post gives bullets.
I found a web page which supplies copy and paste Bullet Point symbols https://fsymbols.com/signs/bullet-point/ so I was able to add a point manually. I can also add numbers manually. It's fiddly doing things manually so I'm wondering if there's a way of making the sCode work properly in a pet profile. Other sCodes I've used in pet profiles do what they are supposed to.
There isn't a issue with the scode directly, it's the css that is applied by default to a pet profile cause the stats of a pet is a list and they disabled the bullets/numbers/other for that. The below style code will bring bullets to any list you add
li {
list-style: disc;
}
NOTE: you can have it numbered instead by changing the style from "disc" to "decimal"