📄 xhtml.php
字号:
<?phpclass Text_Wiki_Render_Xhtml extends Text_Wiki_Render { var $conf = array('translate' => HTML_ENTITIES); function pre() { // attempt to translate HTML entities in the source before continuing. $type = $this->getConf('translate', null); // are we translating html? if ($type !== false && $type !== null) { // yes! get the translation table. $xlate = get_html_translation_table($type); // remove the delimiter character it doesn't get translated unset($xlate[$this->wiki->delim]); // translate! $this->wiki->source = strtr($this->wiki->source, $xlate); } } function post() { return; } }?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -