Source for file Xhtml.php
Documentation is available at Xhtml.php
class Text_Wiki_Render_Xhtml extends Text_Wiki_Render {
var $conf = array ('translate' => HTML_ENTITIES );
// attempt to translate HTML entities in the source before continuing.
$type = $this->getConf ('translate', null );
// are we translating html?
// yes! get the translation table.
// remove the delimiter character it doesn't get translated
unset ($xlate[$this->wiki->delim ]);
$this->wiki->source = strtr($this->wiki->source , $xlate);
Documentation generated on Mon, 11 Mar 2019 14:22:35 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|