Hello @antnb
Can you tell us what the editor is that you use? That can help to see if there is an option to allow it.
hi @tvbeek
im using ckeditor
i use search in file , and I found configuration on platform/core/base/config/general.php
'purifier' => [
'default' => [
'HTML.Doctype' => 'HTML 4.01 Transitional',
'HTML.Allowed' => 'div,b,strong,i,em,u,a[href|title|rel|style|target],ul,ol,li,p[style],br,span[style],img[width|height|alt|src|style],button,ins[style|data-ad-client|data-ad-slot|data-ad-format|data-full-width-responsive],video[src|type|width|height|preload|controls|autoplay|autostart|poster|id|class]',
'HTML.AllowedElements' => [
'a',
'b',
'blockquote',
'br',
'code',
'em',
'h1',
'h2',
'h3',
'h4',
'h5',
'h6',
'hr',
'i',
'img',
'li',
'ol',
'p',
'pre',
's',
'span',
'strong',
'sub',
'sup',
'table',
'tbody',
'td',
'th',
'thead',
'tr',
'u',
'ul',
'pre',
'abbr',
'kbd',
'var',
'samp',
'hr',
'iframe',
'figure',
'figcaption',
'section',
'article',
'aside',
'blockquote',
'caption',
'del',
'div',
'button',
'ins',
'video',
'source',
],
'HTML.SafeIframe' => 'true',
// Add to .env if you want to allow all.
// CMS_IFRAME_FILTER_URL_REGEX=/^(.*)/
'URI.SafeIframeRegexp' => env('CMS_IFRAME_FILTER_URL_REGEX', '%^(http://|https://|//)(' . env('CMS_IFRAME_ALLOWED_URLS', 'www.youtube.com/embed/|player.vimeo.com/video/') . ')%'),
'Attr.AllowedFrameTargets' => ['_blank'],
'CSS.AllowedProperties' => [
'font',
'font-size',
'font-weight',
'font-style',
'font-family',
'text-decoration',
'padding-left',
'color',
'background-color',
'text-align',
'max-width',
'border',
'width',
'line-height',
'word-spacing',
'border-style',
'list-style-type',
'border-color',
'height',
'min-width',
'min-height',
'max-height',
],
'CSS.MaxImgLength' => null,
'AutoFormat.AutoParagraph' => false,
'AutoFormat.RemoveEmpty' => false,
],
'custom_elements' => [
['u', 'Inline', 'Inline', 'Common'],
['button', 'Inline', 'Inline', 'Common'],
['ins', 'Inline', 'Inline', 'Common'],
],
'custom_attributes' => [
['a', 'rel', 'Text'],
['ins', 'data-ad-client', 'Text'],
['ins', 'data-ad-slot', 'Text'],
['ins', 'data-ad-format', 'Text'],
['ins', 'data-ad-full-width-responsive', 'Text'],
['img', 'data-src', 'Text'],
['video', 'autoplay', 'Text'],
],
],
I tried to edit div into div[itemscope|itemprop|itemtype] but it seems that's not the correct one
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community