are there methods to help find which list items belong together when they don't have the same numId.
For example, in word, these display as the same list - one at level 2 and the next at level 3 -- but in the xml, they have different numId values
<w:p w:rsidR="000C6B97" w:rsidRDefault="00E80511" w:rsidP="00E80511">
    <w:pPr>
        <w:numPr>
            <w:ilvl w:val="2"/>
            <w:numId w:val="35"/>
        </w:numPr>
        <w:spacing w:after="0"/>
        <w:ind w:left="1200"/>
    </w:pPr>
    <w:r>
        <w:rPr>
            <w:color w:val="000000"/>
        </w:rPr>
        <w:t>Here is the level 2 text
        </w:t>
    </w:r>
    <w:r>
        <w:br/>
    </w:r>
    <w:r>
        <w:br/>
    </w:r>
</w:p>
<w:p w:rsidR="000C6B97" w:rsidRDefault="00E80511" w:rsidP="00E80511">
    <w:pPr>
        <w:numPr>
            <w:ilvl w:val="3"/>
            <w:numId w:val="36"/>
        </w:numPr>
        <w:spacing w:after="0"/>
        <w:ind w:left="1800"/>
    </w:pPr>
    <w:r>
        <w:rPr>
            <w:b/>
            <w:color w:val="000000"/>
        </w:rPr>
        <w:t>No:</w:t>
    </w:r>
    <w:r>
        <w:rPr>
            <w:color w:val="000000"/>
        </w:rPr>
        <w:t xml:space="preserve"> Here is the level 3 text, but it has a different numId</w:t>
    </w:r>
</w:p>
			
		
