style: use bullets for unordered lists

This commit is contained in:
mappu 2015-11-08 11:35:29 +13:00
parent 8a9b36d3db
commit d67c7fc926
1 changed files with 1 additions and 0 deletions

View File

@ -135,6 +135,7 @@ function text2html($sz) {
$base = preg_replace('~\\[i\\](.+?)\\[/i\\]~m', '<i>\\1</i>', $base);
$base = preg_replace('~\\[spoiler\\](.+?)\\[/spoiler\\]~m', '<span class="spoiler">\\1</span>', $base);
$base = preg_replace('~\\[entry=([^\\]]+?)\\](.+?)\\[/entry\\]~m', '<a href="\\1.html">\\2</a>', $base);
$base = preg_replace('~\n- ~ms', "\n&bull; ", $base);
$btparts = explode('`', $base);
if (count($btparts) > 1 && (count($btparts) % 2)) {