⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 presentation.php

📁 很棒的在线教学系统
💻 PHP
字号:
<?phprequire_once 'HTMLPurifier/HTMLModule.php';/** * XHTML 1.1 Presentation Module, defines simple presentation-related * markup. Text Extension Module. * @note The official XML Schema and DTD specs further divide this into *       two modules: *          - Block Presentation (hr) *          - Inline Presentation (b, big, i, small, sub, sup, tt) *       We have chosen not to heed this distinction, as content_sets *       provides satisfactory disambiguation. */class HTMLPurifier_HTMLModule_Presentation extends HTMLPurifier_HTMLModule{        var $name = 'Presentation';        function setup($config) {        $this->addElement('b',      true, 'Inline', 'Inline', 'Common');        $this->addElement('big',    true, 'Inline', 'Inline', 'Common');        $this->addElement('hr',     true, 'Block',  'Empty',  'Common');        $this->addElement('i',      true, 'Inline', 'Inline', 'Common');        $this->addElement('small',  true, 'Inline', 'Inline', 'Common');        $this->addElement('sub',    true, 'Inline', 'Inline', 'Common');        $this->addElement('sup',    true, 'Inline', 'Inline', 'Common');        $this->addElement('tt',     true, 'Inline', 'Inline', 'Common');    }    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -