Hi all, I'm having a problem with bullet point lists in my README.rst file not rendering nicely on the (main and Test) Tool Shed. This example of mine shows the bullet points fine on GitHub's rendering (two bullet lists examples): https://github.com/peterjc/picobio/blob/424747ecccf5cce6ce327754e6f8e57a5947... However, on the Tool Shed the bullet points are missing: http://testtoolshed.g2.bx.psu.edu/view/peterjc/rxlr_venn_workflow/de29af5da8... Here is the relevant reStructuredText documentation: http://docutils.sourceforge.net/docs/user/rst/quickref.html#bullet-lists As per the documentation, I have a blank line before and after the bullets, and I am using one other three valid bullet characters ("*", rather than "-" or "+"), e.g. * 89 RXLRs using Whisson et al. (2007) * 124 RXLRs using Win et al. (2007) * 162 RXLRs using Bhattacharjee et al. (2006) In fact, looking at the HTML source on the Tool Shed it has correctly rendered as an unordered list: <ul class="simple"> <li>89 RXLRs using Whisson et al. (2007)</li> <li>124 RXLRs using Win et al. (2007)</li> <li>162 RXLRs using Bhattacharjee et al. (2006)</li> </ul> Is there a bug in the default Tool Shed CSS which is hiding the bullet points? Thanks. Peter