Lines Matching defs:toc
184 case 'toc':
185 //print toc preview
354 * Print a toc preview
368 $toc = $meta['description']['tableofcontents'] ?? [];
370 if (count($toc) > 1) {
372 $out = $this->renderToc($toc);
383 * @param $toc
389 private function renderToc($toc)
393 $out .= $lang['toc'];
396 $out .= html_buildlist($toc, 'toc', [$this, 'formatIndexmenuListTocItem'], null, true);