Lines Matching refs:this

26     $this->doc = '';
27 $this->footnotes = array();
28 $this->lastsec = 0;
29 $this->store = '';
30 $this->_counter = array();
39 $this->doc .= str_replace("\n","<br />\n",$this->_xmlEntities($text));
56 $this->sectionedits[] = array(++$lastsecid, $start, $type, $title);
61 list($id, $start, $type, $title) = array_pop($this->sectionedits);
65 $this->doc .= "<!-- EDIT$id " . strtoupper($type) . ' ';
67 $this->doc .= '"' . str_replace('"', '', $title) . '" ';
69 $this->doc .= "[$start-" . (is_null($end) ? '' : $end) . '] -->';
74 while (count($this->sectionedits) > 0) {
75 if ($this->sectionedits[count($this->sectionedits) - 1][1] <= 1) {
78 array_pop($this->sectionedits);
80 $this->finishSectionEdit();
84 if ( count ($this->footnotes) > 0 ) {
85 $this->doc .= '<div class="footnotes">'.DOKU_LF;
88 foreach ( $this->footnotes as $footnote ) {
95 $this->doc .= '<div class="fn">';
96 … $this->doc .= '<sup><a href="#fnt__'.$id.'" id="fn__'.$id.'" name="fn__'.$id.'" class="fn_bot">';
97 $this->doc .= $id.')</a></sup> '.DOKU_LF;
100 $alt = array_keys($this->footnotes, "@@FNT$id");
105 …$this->doc .= ', <sup><a href="#fnt__'.($ref+1).'" id="fn__'.($ref+1).'" name="fn__'.($ref+1).'" c…
106 $this->doc .= ($ref+1).')</a></sup> '.DOKU_LF;
111 $this->doc .= $footnote;
112 $this->doc .= '</div>' . DOKU_LF;
115 $this->doc .= '</div>'.DOKU_LF;
120 …if($this->info['toc'] && is_array($this->toc) && $conf['tocminheads'] && count($this->toc) >= $con…
122 $TOC = $this->toc;
126 $this->doc = preg_replace('#<p>\s*</p>#','',$this->doc);