summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarry Fuecks <hfuecks@gmail.com>2005-04-13 13:42:49 +0200
committerHarry Fuecks <hfuecks@gmail.com>2005-04-13 13:42:49 +0200
commitdfb7810ba16e7becb2fb423cf984b18c8526b085 (patch)
treeb73437b7266b85725e48a7c59a9e838a8b1a256d
parenta890d25f321e90efa874870f286b4ece553eb863 (diff)
downloadrpg-dfb7810ba16e7becb2fb423cf984b18c8526b085.tar.gz
rpg-dfb7810ba16e7becb2fb423cf984b18c8526b085.tar.bz2
Fix for list syntax generation
darcs-hash:20050413114249-56ad0-1df83913d233af8db9f120a89d08d06df86b6b88.gz
-rw-r--r--inc/parser/wiki.php12
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() {