Sachsentext

Lists should not be used for formatting

Lists like ul and ol are to provide a structured list, and should not be used to format text. This test views any list with just one item as suspicious, but should be manually reviewed.

Example

Wrong

<ul><li>Something I just wanted indented</li></ul>

Right

<p style="margin-left: 10px;">Something I just wanted indented</p>