Lines Matching refs:text
123 public function cdata($text) argument
129 $this->doc .= $text;
131 $this->captured += strlen($text);
141 * @param string $text the text to display
144 public function toc_additem($id, $text, $level) argument
153 'title' => $text,
163 * @param string $text the text to display
167 public function header($text, $level, $pos) argument
170 $this->meta['title'] = $text;
174 $hid = $this->_headerToLink($text, true);
175 $this->toc_additem($hid, $text, $level);
178 $this->cdata(DOKU_LF . $text . DOKU_LF);
292 * @param string $text
294 public function preformatted($text) argument
296 $this->cdata($text);
318 * @param string $text text to show
322 public function file($text, $lang = null, $file = null) argument
324 $this->cdata(DOKU_LF . $text . DOKU_LF);
330 * @param string $text text to show
334 public function code($text, $language = null, $file = null) argument
336 $this->cdata(DOKU_LF . $text . DOKU_LF);