<P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-ALIGN: justify"><B \nstyle="mso-bidi-font-weight: normal"><SPAN style="FONT-SIZE: 11pt">This is the header<o:p></o:p></SPAN></B></P>\n<UL style="MARGIN-TOP: 0in" type=disc>\n <LI class=MsoNormal \n style="MARGIN: 0in 0in 0pt; TEXT-ALIGN: justify; mso-list: l1 level1 lfo3; tab-stops: list .5in"><SPAN \n style="FONT-SIZE: 11pt">This is the first bullet<o:p></o:p></SPAN></LI></UL>\n<P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.25in; TEXT-ALIGN: justify"><SPAN \nstyle="FONT-SIZE: 11pt"><o:p></o:p></SPAN></P>\n<UL style="MARGIN-TOP: 0in" type=disc>\n <LI class=MsoNormal \n style="MARGIN: 0in 0in 0pt; TEXT-ALIGN: justify; mso-list: l1 level1 lfo3; tab-stops: list .5in"><SPAN \n style="FONT-SIZE: 11pt">This is the second bullet with some “stupid quote marks” <o:p></o:p></SPAN></LI></UL>\n<P class=MsoNormal style="MARGIN: 0in 0in 0pt 0.25in; TEXT-ALIGN: justify"><SPAN \nstyle="FONT-SIZE: 11pt"><o:p></o:p></SPAN></P>\n<UL style="MARGIN-TOP: 0in" type=disc>\n <LI class=MsoNormal \n style="MARGIN: 0in 0in 0pt; TEXT-ALIGN: justify; mso-list: l1 level1 lfo3; tab-stops: list .5in"><SPAN \n style="FONT-SIZE: 11pt">This is the \n third bullet, with an:<SPAN \n style="mso-spacerun: yes"> </SPAN></SPAN><SPAN \n style="FONT-SIZE: 10pt; mso-bidi-font-family: Arial"><A title=http://unclickable-link/ \n href="blocked::BLOCKED::http://unclickable-link/">http://unclickable-link</A> . </SPAN><SPAN \n style="FONT-SIZE: 11pt">This is the rest\n of the third bullet.<SPAN \n style="mso-spacerun: yes"> </SPAN><o:p></o:p></SPAN></LI></UL>\n<P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-ALIGN: justify"><SPAN \nstyle="FONT-SIZE: 11pt"><SPAN \nstyle="mso-spacerun: yes"></SPAN><o:p></o:p></SPAN></P>\n<UL style="MARGIN-TOP: 0in" type=disc>\n <LI class=MsoNormal \n style="MARGIN: 0in 0in 0pt; TEXT-ALIGN: justify; mso-list: l1 level1 lfo3; tab-stops: list .5in"><SPAN \n style="FONT-SIZE: 11pt">This is the \n fourth bullet<o:p></o:p></SPAN></LI></UL>
And what does that mess do, you ask? Note the closing and opening unordered lists. Note that they're nested in paragraphs. Note that styles are applied to the containing paragraphs, to the lists, to the list items, and then to the multiple spans within each line of each item. Got it figured out yet?
All of it can be replaced by:
<UL>\n <LI>This is the first bullet</LI>\n <LI>This is the second bullet with some "normal quote marks"</LI>\n <LI>This is the third bullet, with a http://link/ This is the rest of the third bullet.</LI>\n <LI>This is the fourth bullet</LI>\n</UL>\n
Microsoft has trained people to believe they shouldn't look at the code, because it's beyond human comprehension anyway. When people use this crap for actual web development, how do they troubleshoot display issues with web pages? No, don't answer. I know they just poke randomly at the interface until it looks good in their browser. And if someone makes them test it in other browsers, they poke randomly some more.