diff options
author | Harry Fuecks <hfuecks@gmail.com> | 2005-04-13 13:42:49 +0200 |
---|---|---|
committer | Harry Fuecks <hfuecks@gmail.com> | 2005-04-13 13:42:49 +0200 |
commit | dfb7810ba16e7becb2fb423cf984b18c8526b085 (patch) | |
tree | b73437b7266b85725e48a7c59a9e838a8b1a256d | |
parent | a890d25f321e90efa874870f286b4ece553eb863 (diff) | |
download | rpg-dfb7810ba16e7becb2fb423cf984b18c8526b085.tar.gz rpg-dfb7810ba16e7becb2fb423cf984b18c8526b085.tar.bz2 |
Fix for list syntax generation
darcs-hash:20050413114249-56ad0-1df83913d233af8db9f120a89d08d06df86b6b88.gz
-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() {
|