Skip to content
Snippets Groups Projects
Commit dfb7810b authored by Harry Fuecks's avatar Harry Fuecks
Browse files

Fix for list syntax generation

darcs-hash:20050413114249-56ad0-1df83913d233af8db9f120a89d08d06df86b6b88.gz
parent a890d25f
No related branches found
No related tags found
No related merge requests found
......@@ -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() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment