diff --git a/wysiwyg_filter.inc b/wysiwyg_filter.inc index 18f68c9..364df52 100644 --- a/wysiwyg_filter.inc +++ b/wysiwyg_filter.inc @@ -472,6 +472,9 @@ function wysiwyg_filter_get_style_property_groups() { $groups['font']['properties']['font-family'] . ')'; $groups['font']['properties']['font'] = '(?:' . $regexp . ')(?:(?:\s+' . $regexp . ')+)'; + // Allow other modules to alter groups + drupal_alter('wysiwyg_filter_style_property_groups', $groups); + return $groups; }