Lines Matching refs:this

31         $this->doc .= $match; // FIXME always?
38 $this->doc .= str_pad('', $level, '#');
39 $this->doc .= $text;
40 $this->linebreak();
49 if (empty($this->linklist)) return;
51 $this->linebreak();
52 foreach ($this->linklist as $number => $link) {
53 $this->doc .= '=> ' . $link['url'] . " [$number] " . $link['title'];
54 $this->linebreak();
56 $this->linebreak();
58 $this->linklist = [];
64 $this->doc .= $text;
70 $this->linebreak();
71 $this->linebreak();
80 if ($optional && $this->doc[-1] == self::NL) return;
81 $this->doc .= self::NL;
87 $this->linebreak();
88 $this->doc .= str_pad('', 70, '━');
89 $this->linebreak();
95 $this->doc .= ' ❲';
101 $this->doc .= '❳ ';
107 $this->linebreak();
113 $this->linebreak();
119 $this->doc .= '*';
124 $this->linebreak();
130 $this->cdata($text);
136 $this->preformatted($text);
142 $this->cdata($text);
148 $this->preformatted($text);
154 $this->file($text);
160 $this->doc .= '> ';
166 $this->linebreak(true);
172 $this->linebreak(true);
173 $this->doc .= "```$file";
174 $this->linebreak();
175 $this->cdata($text);
176 $this->linebreak(true);
177 $this->doc .= '```';
178 $this->linebreak();
184 $this->file($text, $lang, $file);
190 $this->cdata($acronym);
196 $this->cdata($smiley);
202 if (array_key_exists($entity, $this->entities)) {
203 $this->doc .= $this->entities[$entity];
205 $this->cdata($entity);
212 $this->cdata($x . '×' . $y);
219 $this->doc .= $lang['singlequoteopening'];
226 $this->doc .= $lang['singlequoteclosing'];
233 $this->doc .= $lang['apostrophe'];
240 $this->doc .= $lang['doublequoteopening'];
247 $this->doc .= $lang['doublequoteclosing'];
253 $this->internallink($link);
260 $this->cdata($name);
280 $this->externallink($url, $title);
292 $this->internalmedia($title['src'], $title['title']);
294 $this->externalmedia($title['src'], $title['title']);
305 $count = count($this->linklist);
307 $this->linklist[$count] = [
316 $this->cdata($title);
317 if ($url) $this->doc .= "[$count]";
320 $this->doc = substr($this->doc, 0, -1);
321 $this->doc .= "[$count]";
322 $this->linebreak();
353 $this->doc .= '=> ' . $item->get_permalink() . ' ' . $item->get_title();
354 $this->linebreak();
356 if ($params['author']) $this->cdata($item->get_author(0)->get_name());
357 … if ($params['date']) $this->cdata(' (' . $item->get_local_date($conf['dformat']) . ')');
358 $this->linebreak();
361 $this->doc .= '> ' . strip_tags($item->get_description());
362 $this->linebreak();
371 $url = $this->_resolveInterWiki($wikiName, $wikiUri, $exists);
374 $this->externallink($url, $title);
376 $this->internallink($url, $title);
378 $this->cdata($title);
391 $this->externallink('mailto:' . $address, $name);
410 $this->externalmedia($src, $title);
426 $this->linebreak(true);
427 $this->doc .= '=> ' . $src . ' ' . $title;
428 $this->linebreak();
434 $this->internalmedia($src, $title, $align, $width, $height, $cache);
445 $this->linebreak(true);
446 $this->doc .= '```';
447 $this->linebreak();
453 $this->doc .= '```';
454 $this->linebreak();
459 $this->linebreak();
464 $this->doc .= "\t";
469 $this->doc .= "\t";