1234567891011121314151617 |
- <?php
- return [
- 'encoding' => 'UTF-8',
- 'finalize' => true,
- 'cachePath' => storage_path('app/purifier'),
- 'cacheFileMode' => 0755,
- 'settings' => [
- 'formdemo_note' => [
- 'HTML.Doctype' => 'XHTML 1.0 Transitional',
- 'HTML.Allowed' => 'div,b,strong,i,em,a[href|title],ul,ol,ol[start],li,p[style],br,span[style],img[width|height|alt|src],*[style|class],pre,hr,code,h2,h3,h4,h5,h6,blockquote,del,table,thead,tbody,tr,th,td',
- 'CSS.AllowedProperties' => 'font,font-size,font-weight,font-style,margin,width,height,font-family,text-decoration,padding-left,color,background-color,text-align',
- 'AutoFormat.AutoParagraph' => true,
- 'AutoFormat.RemoveEmpty' => true,
- ],
- ],
- ];
|