| D | renderer.php | 30 var $doc = ''; // will contain the whole document variable in renderer_plugin_nroff 108 $this->doc = str_replace("'", "'", $this->doc); 109 $this->doc = str_replace("<", "<", $this->doc); 110 $this->doc = str_replace(">", ">", $this->doc); 111 $this->doc = str_replace("&", "&", $this->doc); 112 $this->doc = str_replace("-", '\\-', $this->doc); 114 $this->doc = '.TH '. 119 $conf['title'].DOKU_LF.$this->doc; 140 $this->doc .= DOKU_LF.'.SH '; 141 $this->doc .= $this->_xmlEntities($text); [all …]
|