wzkb_github_export_heading_post
Fires after a core/heading block is converted.
Type: filter
Since: 3.1.0
Source: includes/github/class-content-exporter.php line 346
Parameters
| Type | Name | Description |
|---|---|---|
string |
$result |
Converted Markdown heading. |
array |
$block |
Parsed block array (as used for conversion). |
Usage
add_filter( 'wzkb_github_export_heading_post', function($result, $block) {
// ...
return $result;
} );