If you put this HTML, you will see that it is rendered wrong with "Summary" indented.
To see the correct format, just go into the super-resume editor and edit a text area (like the summary) and enter this (in tinymce). Then you can look at the generated HTML. It will look like this:
<p>Summary</p>
<ul>
<li>bullet1</li>
<li>bullet2</li>
</ul>
If you want to add an attribute to make parsing easier, that's fine. Something like:
<p for="ul">Summary</p>
<ul>
<li>bullet1</li>
<li>bullet2</li>
</ul>
When you are setting properly, let me know and I will give you sample parsing code.