You are here

function insert_responsive_image_insert_allowed_html in Insert 8.2

Implements hook_insert_allowed_html().

File

modules/insert_responsive_image/insert_responsive_image.module, line 87

Code

function insert_responsive_image_insert_allowed_html() {
  return [
    'attributes' => [
      'img' => [
        'srcset' => NULL,
        'sizes' => NULL,
      ],
    ],
  ];
}