config\jevix.default: fix rel attribute in a tag

#22
This commit is contained in:
Visman 2023-10-31 19:58:34 +07:00
parent 5ac2b20ff2
commit c5f2aa0a97

View file

@ -42,7 +42,7 @@ return [
],
// Разрешенные атрибуты тегов / Allowed tag attributes
'cfgAllowTagParams' => [
['a', ['class', 'title', 'href']],
['a', ['class', 'title', 'href', 'rel']],
['abbr', ['class']],
['address', ['class']],
['article', ['class']],
@ -110,7 +110,7 @@ return [
// [тег, атрибут, значение, перезапись существующего атрибута]
// [tag, attribute, value, overwrite existing attribute]
'cfgSetTagParamDefault' => [
['a', 'rel', 'ugc', true],
// ['a', 'rel', 'ugc', false],
['img', 'alt', 'image', false],
['img', 'loading', 'lazy', true],
],