mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 23:28:42 +00:00
02051e465c
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1267 48356398-32a2-884e-a903-53898d9a118a
25 lines
818 B
PHP
25 lines
818 B
PHP
<?php
|
|
|
|
if(!defined("PHORUM")) exit;
|
|
|
|
// default HTML Purifier configuration settings
|
|
$config->set('HTML', 'Allowed',
|
|
// definitely needed
|
|
'a[href|title],blockquote[cite],b,pre,i,p,'.
|
|
// common semantic markup
|
|
'del,ins,strong,em,'.
|
|
// commmon presentational markup
|
|
's,strike,sub,sup,u,br,tt,div[class],'. // div because bbcode [quote] uses it
|
|
// uncommon semantic markup
|
|
'abbr[title],acronym[title],caption,code,dfn,cite,kbd,var,'.
|
|
// lists
|
|
'dd,dl,dt,ul,li,ol,'.
|
|
// tables
|
|
'table,tr,tbody,thead,tfoot,td,th');
|
|
$config->set('AutoFormat', 'AutoParagraph', true);
|
|
$config->set('AutoFormat', 'Linkify', true);
|
|
$config->set('HTML', 'Doctype', 'XHTML 1.0 Transitional');
|
|
$config->set('Core', 'AggressivelyFixLt', true);
|
|
$config->set('Core', 'Encoding', 'iso-8859-1'); // we'll change this eventually
|
|
|