I have been having problems trying to figure out if there is a way to format my "List" with DWMX in my layout without causing my div tags to break up into separate tags. I can hand code the list but, I'm setting up templates for others to use and they will be using Contribute to edit their individual pages. I don't know if there is a way around this, but I appreciate any input.
Below is what is happening when I add the "list" formatting to my text:
<div id"container name">
<ul>
<li>
<div>list 1</div>
</li>
<li>
<div>list 2</div>
</li>
</ul>
<div>
It should be:
<div id"container name">
<ul>
<li>list 1</li>
<li>list 2</li>
</ul>
</div>