/* Different bullets per nesting level */
.md-typeset ul { list-style-type: disc; }
.md-typeset ul ul { list-style-type: circle; }
.md-typeset ul ul ul { list-style-type: square; }
.md-typeset ul ul ul ul { list-style-type: disc; }

/* Optional for numbered lists */
.md-typeset ol { list-style-type: decimal; }
.md-typeset ol ol { list-style-type: lower-alpha; }
.md-typeset ol ol ol { list-style-type: lower-roman; }
