Add a space after every bullet in a <li> element

This commit is contained in:
Daniel Martí 2013-10-08 15:26:57 +02:00
parent 5609b88250
commit eabf9cd654

View File

@ -467,7 +467,7 @@ public class AppDetails extends ListActivity {
} else if (tag.equals("li")) {
if (opening) {
if (listNum == -1) {
output.append("\t•");
output.append("\t• ");
} else {
output.append("\t" + Integer.toString(listNum)
+ ". ");