Home
last modified time | relevance | path

Searched refs:toc (Results 26 – 50 of 125) sorted by relevance

12345

/plugin/combo/resources/theme/default/pages/templates/
H A Dholy.js2 * Move the side slot in the toc area
13 if (side.parentElement.getAttribute("id") !== "main-toc") {
14 let toc = document.getElementById("main-toc");
15 toc.appendChild(side);
H A Dminimal.yml3 - 'main-toc'
H A Dholy-medium.yml6 - 'main-toc'
H A Dmedium.yml6 - 'main-toc'
H A Dholy.yml7 - 'main-toc'
/plugin/combo/action/
H A Dtoc.php10 * It will overwrite the toc data with our TOC if any
46 // admin may also have toc
51 $toc = Toc::createForRequestedPage()
53 $event->data = $toc;
/plugin/header2/
H A Drenderer.php101 …if($this->info['toc'] && is_array($this->toc) && $conf['tocminheads'] && count($this->toc) >= $con…
103 $TOC = $this->toc;
/plugin/linksuggest/
H A Daction.php116 if (isset($meta['internal']['toc'])) {
117 $toc = $meta['description']['tableofcontents'];
118 Event::createAndTrigger('TPL_TOC_RENDER', $toc, null, false);
119 if (is_array($toc) && count($toc) !== 0) {
120 foreach ($toc as $t) { //loop through toc and compare
/plugin/header3/
H A Drenderer.php120 …if($this->info['toc'] && is_array($this->toc) && $conf['tocminheads'] && count($this->toc) >= $con…
122 $TOC = $this->toc;
/plugin/ifauthex/
H A Dsyntax.php151 $renderer->meta['ifauthex.originalToc'] = &$renderer->toc;
152 $renderer->toc = &$ignoredToc;
179 $renderer->toc = &$renderer->meta['ifauthex.originalToc'];
/plugin/indexmenu/
H A Daction.php184 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, 'to
238 render_toc($toc) global() argument
[all...]
/plugin/html2pdf/snorriheim/
H A Drtl.css89 div.dokuwiki div.toc {
101 div.dokuwiki ul.toc {
106 div.dokuwiki ul.toc li {
112 div.dokuwiki ul.toc li.clear {
/plugin/sqlite/
H A Dadmin.php145 $toc = [];
146 $toc[] = [
155 $toc[] = [
163 return $toc;
/plugin/txt2tags/
H A Dtxt2tags.class.php267 $toc = array();
327 $toc[] = $this->sp($level) . "- [$txt #$anchor]";
395 if($this->enabletoc && count($toc)) {
397 array_unshift($toc, "\032\032");
398 $toc[] = "\032\032";
400 if($v=='%%toc') array_splice($lines2, $k, 1, $toc);
405 array_unshift($toc, $bar);
406 $toc[] = $bar;
408 $lines2 = array_merge($toc, $lines2);
/plugin/footnotestyle/
H A Drenderer.php125 …if($this->info['toc'] && is_array($this->toc) && $conf['tocminheads'] && count($this->toc) >= $con…
127 $TOC = $this->toc;
/plugin/loadskin/
H A Dstyle.css26 .dokuwiki div.toc,
30 [dir=rtl] .dokuwiki div.toc,
/plugin/struct/admin/
H A Dschemas.php310 $toc = [];
315 $toc[] = html_mktocitem($link, $this->getLang('menu_assignments'), 0, '');
320 $toc[] = html_mktocitem($slink, $this->getLang('menu'), 0, '');
332 $toc[] = html_mktocitem($link, hsc($table), 1, '');
336 return $toc;
/plugin/commonmark/vendor/league/commonmark/src/Extension/TableOfContents/Normalizer/
H A DAsIsNormalizerStrategy.php31 public function __construct(TableOfContents $toc)
33 $this->parentListBlock = $toc;
27 __construct(TableOfContents $toc) global() argument
/plugin/dirtylittlehelper/
H A Dscript.js775 let toc = item.toc;
776 let title = toc.title ? ' (' + linksuggest_escape(toc.title) + ')' : '';
778 return linksuggest_escape(toc.hid) + title;
783 let toc = item.toc;
790 return '[[' + link + '#' + toc.hid;
/plugin/combo/ComboStrap/
H A DToc.php71 $toc = $this->tocData;
74 if (count($toc) < $tocMinHeads) {
79 * Adding toc number style
87 LogUtility::error("The toc numbering type was unknown", self::CANONICAL);
100 foreach ($toc as $tocItem) {
144 $tocLevelClass = StyleAttribute::addComboStrapSuffix("toc-level-$actualLevel");
153 $tocHeaderLang = $lang['toc'];
154 $tocHeaderClass = StyleAttribute::addComboStrapSuffix("toc-header");
166 * @return bool if the toc need to be shown
169 * $this->info['toc']
[all...]
/plugin/condition/
H A Dsyntax.php218 $toc = $renderer->toc;
226 $renderer->toc = array_merge($toc, $renderer->toc);
/plugin/toctweak/syntax/
H A Dsidetoc.php73 $toc = $tocTweak->get_metatoc($id, $topLv, $maxLv, $section);
83 $html.= html_buildlist($toc, 'toc', array($this, 'html_list_metatoc'));
/plugin/docnavigation/syntax/
H A Dtoc.php184 $toc = p_get_metadata($pageid, 'description tableofcontents', METADATA_RENDER_USING_CACHE | METADATA_RENDER_UNLIMITED);
187 if (is_array($toc)) foreach ($toc as $tocitem) {
/plugin/tocselect/
H A Daction.php80 $toc = p_get_metadata($id,'description tableofcontents');
81 if(!$toc) return "";
89 foreach ($toc as $head) {
/plugin/toc/
H A Dstyle.css1 div.inlinetoc div.toc {

12345