Lines Matching full:this
16 * @todo Is this currently used anywhere? Should it?
31 $this->doc .= DOKU_LF . '<div>' . DOKU_LF;
37 $this->doc = $this->sum_summary;
38 $this->doc .= DOKU_LF . '</div>' . DOKU_LF;
49 if (!$this->sum_pageTitle) {
50 $this->info['sum_pagetitle'] = $text;
51 $this->sum_pageTitle = true;
53 $this->doc .= DOKU_LF . '<h' . $level . '>';
54 $this->doc .= $this->_xmlEntities($text);
55 $this->doc .= "</h$level>" . DOKU_LF;
61 if ($this->sum_capture) {
62 $this->sum_inSection = true;
69 if ($this->sum_capture && $this->sum_inSection) {
70 $this->sum_summary .= $this->doc;
71 $this->sum_capture = false;
78 if ($this->sum_capture && $this->sum_paragraphs < 2) {
79 $this->sum_paragraphs++;
88 if ($this->sum_capture && $this->sum_paragraphs >= 2) {
89 $this->sum_summary .= $this->doc;
90 $this->sum_capture = false;