Lines Matching +defs:text +defs:html
10 * @link https://tools.ietf.org/html/rfc4180
58 'Content-Type' => 'text/csv',
76 * Output the delimiter (unless it's the first cell of this row) and the text wrapper
95 * Close the text wrapper
135 * @param string $text
137 public function cdata($text)
140 if ($text === '') return;
142 $this->doc .= str_replace('"', '""', $text);
183 public function code($text, $lang = null, $file = null)
185 $this->cdata($text);
188 public function header($text, $level, $pos)
190 $this->cdata($text);
198 public function unformatted($text)
200 $this->cdata($text);
203 public function php($text)
205 $this->cdata($text);
208 public function phpblock($text)
210 $this->cdata($text);
213 public function html($text)
215 $this->cdata($text);
218 public function htmlblock($text)
220 $this->cdata($text);
223 public function preformatted($text)
225 $this->cdata($text);
228 public function file($text, $lang = null, $file = null)
230 $this->cdata($text);