PrinceXML renders the code below incorrectly. This uses an unconventional way of nesting <ul> within <ol>, but it renders correctly on all major browsers.
Note that the <ul> is not nested within the <li> above it, to avoid that the <li> style is applied to it.
<html>
<body>
<ol>
<li style="color:red">Introduction</li>
<ul>
<li>item 1</li>
<li>item 2</li>
</ul>
<li style="color:red">Overview</li>
</ol>
</body>
</html>
Note that the <ul> is not nested within the <li> above it, to avoid that the <li> style is applied to it.
<html>
<body>
<ol>
<li style="color:red">Introduction</li>
<ul>
<li>item 1</li>
<li>item 2</li>
</ul>
<li style="color:red">Overview</li>
</ol>
</body>
</html>