Whenever someone uses this page type it seems they always want it to appear as:
Here is a list:
• item 1
• item 2
• item 3
However, the nature of the page is that either everything has a bullet, or nothing does. Initially I tried recreating the page functionality from scratch to get it to work as they wanted. But then I realised there was a simpler fix, which some may find useful:
p.bullet:not(:first-of-type) {
margin-left: 32px;
}
p.bullet:not(:first-of-type):before {
content:'•';
}