Searched refs:toc (Results 1 – 10 of 10) sorted by relevance
/dokuwiki/lib/tpl/dokuwiki/css/ |
H A D | _toc.css | 6 /* toc 9 /* toc container */ 22 /*____________ toc header ____________*/ 37 /*____________ toc list ____________*/ 67 /* in case of toc list jumping one level
|
H A D | content.less | 322 background: transparent url(images/toc-arrows.png) 0 0; 346 list-style-image: url(images/toc-bullet.png);
|
H A D | mobile.less | 78 /* toc */
|
H A D | basic.less | 48 clear: left; /* ideally 'both', but problems with toc */
|
/dokuwiki/lib/plugins/config/ |
H A D | admin.php | 228 $toc = []; 241 $toc[] = html_mktocitem(sectionID($title, $check), $title, 1); 248 $toc[] = html_mktocitem( 258 $toc[] = html_mktocitem($setting->getKey(), $name, 2); 264 $toc[] = html_mktocitem('undefined_settings', $this->getLang('_header_undefined'), 1); 267 return $toc;
|
/dokuwiki/vendor/splitbrain/php-archive/ |
H A D | README.md | 34 $toc = $tar->contents(); 35 print_r($toc); // array of FileInfo objects
|
/dokuwiki/inc/ |
H A D | template.php | 148 $toc = []; 152 $toc = $TOC; 157 $toc = $meta['description']['tableofcontents'] ?? null; 158 … if (!$tocok || !is_array($toc) || !$conf['tocminheads'] || count($toc) < $conf['tocminheads']) { 159 $toc = []; 165 $toc = $plugin->getTOC(); 166 $TOC = $toc; // avoid later rebuild 170 Event::createAndTrigger('TPL_TOC_RENDER', $toc, null, false); 171 $html = html_TOC($toc);
|
H A D | html.php | 828 * @param array $toc 831 function html_TOC($toc) argument 833 if ($toc === []) return ''; 841 $out .= html_buildlist($toc, 'toc', 'html_list_toc', null, true);
|
/dokuwiki/inc/parser/ |
H A D | xhtml.php | 22 public $toc = []; variable in Doku_Renderer_xhtml 133 $this->toc = []; 184 is_array($this->toc) && 185 $conf['tocminheads'] && count($this->toc) >= $conf['tocminheads'] 188 $TOC = $this->toc; 208 $this->toc[] = html_mktocitem($id, $text, $level - $conf['toptoclevel'] + 1);
|
/dokuwiki/lib/plugins/info/ |
H A D | syntax.php | 332 $renderer->toc[] = [
|