HTML input is enabled. Make sure you escape all HTML and
angled brackets with <
and >
.
config;
if ($config->get('AutoFormat.AutoParagraph')) {
?>
Auto-paragraphing is enabled. Double
newlines will be converted to paragraphs; for single
newlines, use the pre
tag.
getDefinition('HTML');
$allowed = array();
foreach ($html_definition->info as $name => $x) $allowed[] = "
$name
";
sort($allowed);
$allowed_text = implode(', ', $allowed);
?>
Allowed tags: .
For inputting literal code such as HTML and PHP for display, use
CDATA tags to auto-escape your angled brackets, and pre
to preserve newlines:
<pre><![CDATA[
Place code here
]]></pre>
Power users, you can hide this notice with:
.htmlpurifier-help {display:none;}