You are here

function insert_colorbox_insert_allowed_html in Insert 8.2

Implements hook_insert_allowed_html().

File

modules/insert_colorbox/insert_colorbox.module, line 225

Code

function insert_colorbox_insert_allowed_html() {
  return [
    'tags' => [
      'a' => NULL,
    ],
    'attributes' => [
      'a' => [
        'data-colorbox-gallery' => NULL,
      ],
    ],
  ];
}