You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openwhisk.apache.org by GitBox <gi...@apache.org> on 2018/08/22 00:03:21 UTC

[GitHub] Juice10 opened a new pull request #323: Fix list nesting

Juice10 opened a new pull request #323: Fix list nesting
URL: https://github.com/apache/incubator-openwhisk-website/pull/323
 
 
   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.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services