|
Now bullets are not shown on the site because the way asciidoc renders list in combination with our stylesheet
for example http://aerogear.org/docs/guides/aerogear-cordova/CordovaSetup/
includes a lots of lists without any bullets. The lists are rendered with listitem (li) and then a paragraph (p) inside them. This is allowed in html, but our stylesheet has a overflow hidden so that we can abbreviate when the paragraph doesn't fit the the designated content. As a bonus this will not show the bullets on the list items.
Solution add the following rule to the css:
li > p
{
overflow: initial;
}
|