Gets the subset of allowed elements whose tags are concrete.
\Drupal\ckeditor5\HTMLRestrictions The subset of the given set of HTML restrictions.
public function getConcreteSubset() : HTMLRestrictions { return new self(array_filter($this->elements, function (string $tag_name) { return !self::isWildcardTag($tag_name); }, ARRAY_FILTER_USE_KEY)); }