mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 15:48:42 +00:00
8f6380d63a
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1051 48356398-32a2-884e-a903-53898d9a118a
33 lines
1.2 KiB
PHP
33 lines
1.2 KiB
PHP
<?php
|
|
|
|
require_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 HTMLPurifier_HTMLModule_Presentation() {
|
|
$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');
|
|
}
|
|
|
|
}
|
|
|
|
?>
|