Lines Matching +defs:text +defs:html
8 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
288 public function header($text, $level, $pos)
293 $tnode = new Node('text');
294 $tnode->setText($text);
302 public function cdata($text)
304 if ($text === '') {
311 $text = str_replace("\n", ' ', $text);
329 $node = new Node('text');
330 $node->setText($text);
337 public function preformatted($text)
342 $this->cdata($text);
346 public function code($text, $lang = null, $file = null)
355 $this->cdata(trim($text, "\n"));
359 public function file($text, $lang = null, $file = null)
361 $this->code($text, $lang, $file);
364 public function html($text)
370 $this->cdata(str_replace("\n", ' ', $text));
374 public function htmlblock($text)
381 $this->cdata(trim($text, "\n"));
385 public function php($text)
391 $this->cdata(str_replace("\n", ' ', $text));
395 public function phpblock($text)
402 $this->cdata(trim($text, "\n"));
745 public function unformatted($text)
748 parent::unformatted($text);