2022-09-20 19:59:52 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Settings
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The configuration settings array is passed directly to HTMLPurifier.
|
|
|
|
|
|
|
|
|
| Feel free to add / remove / customize these attributes as you wish.
|
|
|
|
|
|
|
|
|
| Documentation: http://htmlpurifier.org/live/configdoc/plain.html
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'settings' => [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Core.Encoding
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The encoding to convert input to.
|
|
|
|
|
|
|
|
|
| http://htmlpurifier.org/live/configdoc/plain.html#Core.Encoding
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'Core.Encoding' => 'utf-8',
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Core.SerializerPath
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The HTML purifier serializer cache path.
|
|
|
|
|
|
|
|
|
| http://htmlpurifier.org/live/configdoc/plain.html#Cache.SerializerPath
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Purifier config cache disable to run on vapor (no tmp on lambda)
|
|
|
|
'Cache.DefinitionImpl' => null,
|
|
|
|
// 'Cache.SerializerPath' => storage_path('purify'),
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| HTML.Doctype
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Doctype to use during filtering.
|
|
|
|
|
|
|
|
|
| http://htmlpurifier.org/live/configdoc/plain.html#HTML.Doctype
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'HTML.Doctype' => 'XHTML 1.0 Strict',
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| HTML.Allowed
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The allowed HTML Elements with their allowed attributes.
|
|
|
|
|
|
|
|
|
| http://htmlpurifier.org/live/configdoc/plain.html#HTML.Allowed
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'HTML.Allowed' => 'h1,h2,b,strong,i,em,a[href|title],ul,ol,li,p[style],br,span',
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| HTML.ForbiddenElements
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The forbidden HTML elements. Elements that are listed in
|
|
|
|
| this string will be removed, however their content will remain.
|
|
|
|
|
|
|
|
|
| For example if 'p' is inside the string, the string: '<p>Test</p>',
|
|
|
|
|
|
|
|
|
| Will be cleaned to: 'Test'
|
|
|
|
|
|
|
|
|
| http://htmlpurifier.org/live/configdoc/plain.html#HTML.ForbiddenElements
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'HTML.ForbiddenElements' => '',
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| CSS.AllowedProperties
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The Allowed CSS properties.
|
|
|
|
|
|
|
|
|
| http://htmlpurifier.org/live/configdoc/plain.html#CSS.AllowedProperties
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'CSS.AllowedProperties' => 'font,font-size,font-weight,font-style,font-family,text-decoration,padding-left,color,background-color,text-align',
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| AutoFormat.AutoParagraph
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The Allowed CSS properties.
|
|
|
|
|
|
|
|
|
| This directive turns on auto-paragraphing, where double
|
|
|
|
| newlines are converted in to paragraphs whenever possible.
|
|
|
|
|
|
|
|
|
| http://htmlpurifier.org/live/configdoc/plain.html#AutoFormat.AutoParagraph
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'AutoFormat.AutoParagraph' => false,
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| AutoFormat.RemoveEmpty
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| When enabled, HTML Purifier will attempt to remove empty
|
|
|
|
| elements that contribute no semantic information to the document.
|
|
|
|
|
|
|
|
|
| http://htmlpurifier.org/live/configdoc/plain.html#AutoFormat.RemoveEmpty
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'AutoFormat.RemoveEmpty' => false,
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Protect Links
|
|
|
|
*/
|
|
|
|
'HTML.Nofollow' => true,
|
|
|
|
'HTML.TargetBlank' => true,
|
|
|
|
'HTML.TargetNoreferrer' => true,
|
|
|
|
'HTML.TargetNoopener' => true,
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allow notion link: allow Notion custom protocol
|
|
|
|
*/
|
|
|
|
'URI.AllowedSchemes' => [
|
|
|
|
'http' => true,
|
|
|
|
'https' => true,
|
|
|
|
'mailto' => true,
|
|
|
|
'tel' => true,
|
|
|
|
'notion' => true,
|
2024-02-23 10:54:12 +00:00
|
|
|
],
|
2022-09-20 19:59:52 +00:00
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
];
|