Skip to content

Commit 99c9b09

Browse files
committed
Meilleure gestion du rendu des items de liste.
1 parent e99c9d2 commit 99c9b09

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

renderer.php

+20
Original file line numberDiff line numberDiff line change
@@ -192,10 +192,30 @@ function footnote_close() {
192192
$this->doc .= MALG_COM.' '.$id.')';
193193
}
194194

195+
function listo_open() {
196+
$this->doc .= DOKU_LF;
197+
}
198+
199+
function listo_close() {
200+
$this->doc .= DOKU_LF;
201+
}
202+
203+
function listu_open() {
204+
$this->doc .= DOKU_LF;
205+
}
206+
195207
function listu_close() {
196208
$this->doc .= DOKU_LF;
197209
}
198210

211+
function listitem_open($level) {
212+
$this->doc .= MALG_COM.' * ';
213+
}
214+
215+
function listitem_close() {
216+
// nothing
217+
}
218+
199219
function listcontent_close() {
200220
$this->doc .= DOKU_LF;
201221
}

0 commit comments

Comments
 (0)