diff options
Diffstat (limited to 'inc/parser/wiki.php')
-rw-r--r-- | inc/parser/wiki.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/inc/parser/wiki.php b/inc/parser/wiki.php index d79be3a4a..132c5332c 100644 --- a/inc/parser/wiki.php +++ b/inc/parser/wiki.php @@ -119,18 +119,20 @@ class Doku_Renderer_Wiki extends Doku_Renderer { }
function listu_open() {
- $this->listMarker = '*';
+ $this->listMarker = '*'; + echo "\n";
}
function listo_open() {
- $this->listMarker = '-';
- }
-
+ $this->listMarker = '-'; + echo "\n";
+ } + /**
* @TODO Problem here with nested lists
*/
function listitem_open($level) {
- echo str_repeat(' ', $level).$this->listMarker;
+ echo str_repeat(' ', $level).$this->listMarker;
}
function listitem_close() {
|