You are here

function hook_markdown_compatible_filters_alter in Markdown 8.2

Same name and namespace in other branches
  1. 3.0.x markdown.api.php \hook_markdown_compatible_filters_alter()

Allows modules to alter the list of incompatible filters.

Parameters

array $compatibleFilters: An associative array of compatible filters, where the key is the filter identifier and the value is a boolean: TRUE if compatible, FALSE otherwise.

1 function implements hook_markdown_compatible_filters_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

markdown_markdown_compatible_filters_alter in ./markdown.module
Implements hook_markdown_compatible_filters_alter(). @noinspection PhpUnused @noinspection PhpDocSignatureInspection
1 invocation of hook_markdown_compatible_filters_alter()
markdown_form_alter in ./markdown.module
Implements hook_form_FORM_ID_alter(). @noinspection PhpUnused @noinspection PhpDocSignatureInspection @noinspection PhpUnusedParameterInspection

File

./markdown.api.php, line 57
Hooks and alters provided by the Markdown module.

Code

function hook_markdown_compatible_filters_alter(array &$compatibleFilters) {

  // Indicate that a module's filter isn't compatible with the markdown filter.
  $compatibleFilters['my_module_filter'] = FALSE;
}