wzkb_github_export_heading_pre
Fires before a core/heading block is converted.
Return a string to use as the final Markdown output (bypasses conversion). Return a modified array to adjust the block data used for conversion.
Type: filter
Since: 3.1.0
Source: includes/github/class-content-exporter.php line 260
Parameters
| Type | Name | Description |
|---|---|---|
array | $block | Parsed block array. |
Usage
add_filter( 'wzkb_github_export_heading_pre', function($block) {
// ...
return $block;
} );