Lines Matching refs:text

506     function toc_additem($id, $text, $level) {  argument
571 function cdata($text) { argument
572 $this->doc .= $this->_xmlEntities($text);
589 function header($text, $level, $pos){ argument
604 $this->doc.= $this->_xmlEntities($text);
829 function unformatted($text) { argument
830 $this->doc .= $this->_xmlEntities($text);
890 function php($text, $wrapper='dummy') { argument
892 $this->doc .= $this->_xmlEntities($text);
895 function phpblock($text) { argument
896 $this->file($text);
899 function html($text, $wrapper='dummy') { argument
901 $this->doc .= $this->_xmlEntities($text);
904 function htmlblock($text) { argument
905 $this->file($text);
917 function preformatted($text) { argument
918 $this->_preformatted($text);
921 function file($text, $language=null, $filename=null) { argument
922 $this->_highlight('file', $text, $language);
938 function code($text, $language=null, $filename=null) { argument
939 $this->_highlight('code', $text, $language);
942 function _preformatted($text, $style="Preformatted_20_Text", $notescaped=true) { argument
944 $text = $this->_xmlEntities($text);
946 if (strpos($text, "\n") !== FALSE and strpos($text, "\n") == 0) {
948 $text = substr($text,1);
950 $text = str_replace("\n",'<text:line-break/>',$text);
951 … $text = preg_replace_callback('/( +)/',array('renderer_plugin_odp','_preserveSpace'),$text);
956 $this->doc .= $text;
961 $this->doc .= $text;
966 function _highlight($type, $text, $language=null) { argument
972 $this->_preformatted($text, $style_name);
978 $geshi = new GeSHi($text, $language, DOKU_INC . 'inc/geshi');