If you mean bullets lists, you can wrap the list in a div with a class and use the appropriate CSS selector:
<div class="styledlist"> + foo + bar + baz </div>
will provide you with HTML as follows:
<div class="styledlist"> <ul> <li>foo</li> <li>bar</li> <li>baz</li> </ul> </div>
and you can use the CSS selector as follows:
span.styledlist ul { ... }
Not the most beautiful Markdown or HTML, but it works.
source share