I have an issue with the ListView where having a comment in between the <li> and <a> tags causes the > not to show up. For example:
It seems like in the 2nd case, the comment should be ignored and the > character should still appear for the list item.
<!-- This works --><li> <a>Foo</a></li><!-- This doesn't work --><li> <!-- This comment causes the arrow to not appear --> <a>Foo</a></li>It seems like in the 2nd case, the comment should be ignored and the > character should still appear for the list item.