List nesting was going a little awry so I fixed it. Little example of what was
going wrong:
### What we had (bad)
```html
<ul>
<li></li>
<p></p>
<li></li>
<code></code>
</ul>
```
### What we have now (good)
```html
<ul>
<li>
<p></p>
</li>
<li>
<code></code>
</li>
</ul>
```
The latter (and the fixed code) is valid html and will have less issues with
accessibility, SEO and browser issues.
[ Full content available at:
https://github.com/apache/incubator-openwhisk-website/pull/323 ]
This message was relayed via gitbox.apache.org for [email protected]