Lines Matching defs:level
142 * @param int $level the nesting level
144 public function toc_additem($id, $text, $level)
149 if ($level >= $conf['toptoclevel'] && $level <= $conf['maxtoclevel']) {
155 'level' => $level - $conf['toptoclevel'] + 1
164 * @param int $level header level
167 public function header($text, $level, $pos)
175 $this->toc_additem($hid, $text, $level);
273 * @param int $level the nesting level
276 public function listitem_open($level, $node = false)
278 $this->cdata(str_repeat(DOKU_TAB, $level) . '* ');